質問:データベース(MySQL)にユーザを登録する登録フォームを作成しようとしています。
コードを登録することになっている: - をユーザ名 - パスワード - 最初の名前 - 姓 - メールデータベースにユーザを登録する登録フォームを作成しようとしています(MySQL)
そして、私はこのようなエラーになっています:ここで
Notice: Undefined index: fname in C:\xampp\htdocs\Railways\reg.php on line 89
Notice: Undefined index: lname in C:\xampp\htdocs\Railways\reg.php on line 90
Notice: Undefined index: uname1 in C:\xampp\htdocs\Railways\reg.php on line 91
Notice: Undefined index: pswrd1 in C:\xampp\htdocs\Railways\reg.php on line 92
Notice: Undefined index: email in C:\xampp\htdocs\Railways\reg.php on line 93
Fatal error: Call to a member function query() on null in C:\xampp\htdocs\Railways\reg.php on line 98
はコードです:
<?php
global $conn;
include_once('connect.php');
$first=$_POST['fname'];
$last=$_POST['lname'];
$usernam=$_POST['uname1'];
$passwrd=$_POST['pswrd1'];
$email=$_POST['email'];
$sql=" INSERT INTO users(username,password,firstname,lastname,email) VALUES ('".$usernam."','".$passwrd."','".$first."','".$last."','".$email."')";
if($conn->query($sql))
{
echo "<h1 style='text-align:center'> Registered Succesfully </h1>";
}
else
{
echo "<h1 style='text-align:center' id='text'>Error</h1>";
echo $conn->connect_error;
}
?>
そしてここにHTMLである:
<form action="reg.php" method="POST">
<label id="text"> Firstname: <br> <br> <input id="input" type="text" name="fname" placeholder="Firstname" id="t3"> </label>
<br> <br> <br>
<label id="text"> Lastname: <br> <br> <input id="input" type="text" name="lname" placeholder="Lastname" id="t4"> </label>
<br> <br> <br>
<label id="text"> Username: <br> <br> <input id="input" type="text" name="uname1" placeholder="Username" id="t1"> </label>
<br> <br> <br>
<label id="text"> Password: <br> <br> <input id="input" type="text" name="pswrd1" placeholder="Password" id="t2"> </label>
<br> <br> <br>
<label id="text"> Email: <br> <br> <input id="input" type="text" name="email" placeholder="Email" id="t1"> </label>
<br> <br> <br>
<input style="background-color:red;padding:7px;margin-left:40px;"type="submit" value="Register" name="submit" id="s1">
</td></tr>
</table>
</div>
</form>
connect.phpコード
<?php
$conn_error="could not connect";
$host="localhost";
$user="root";
$pass="";
$db="railways";
$sql =mysqli_connect($host,$user,$pass,$db) or die($conn_error);
echo'conneced';
?>
connect.php' 'の株式コード; – itzmukeshy7
また、準備文を参照してください – Strawberry