2016-03-29 15 views
-2

質問:データベース(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'; 

?>

+0

connect.php' 'の株式コード; – itzmukeshy7

+0

また、準備文を参照してください – Strawberry

答えて

1

ポスト提出する場合は、あなたがこのページを開いた場合、直接$_POST変数が空と君の理由でそうでない場合は、あなたのクエリを実行する設定されているチェックを追加します。あなたの$_POST配列は空です。

<?php 


include_once('connect.php'); 
global $conn; 
if(isset($_POST['submit'])) // this check 
{ 
    $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; 
    } 
} 
?> 
+0

Ok.Myのエラーは修正されていますが、私はまだこのエラーが発生しています:致命的なエラー:C:\ xampp \ htdocs \ Railways \ reg.php on lineのメンバ関数query() 99 –

+0

そのエラーのため、私のデータベースにサインアップの詳細を挿入することはできません –

+0

私のansを編集しようとしています...ファイルの後にグローバル$ connを移動してください@ sai-sreenathを含む –

0

$_POSTが設定されていない場合、これらの値を何かに定義する必要があります。このような

何か:

$first=isset($_POST['fname']) ? $_POST['fname'] : "" ; 
$last=isset($_POST['lname']) ? $_POST['lname'] : ""; 
$usernam=isset($_POST['uname1']) ? $_POST['unmae1'] : ""; 
$passwrd=isset($_POST['pswrd1']) ? $_POST['pswrd1'] : ""; 
$email=isset($_POST['email']) ? $_POST['email'] : ""; 

if(isset($_POST['submit'])){ 
    $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;} 
} 
+1

:)エラーを止めるのに役立ちますが、 .php彼はいつもdbの空行を追加します:) –

+0

ああ..私はそれを逃した! – user3284463

関連する問題