2016-11-18 54 views
-2

下面的代码给出了我创建的注册表单,但不幸的是,虽然它的工作原理,mysql查询失败,并返回错误消息unsccessfull注册!我如何纠正这一点?表单提交,但mysql查询功能不正常

<!DOCTYPE html> 
    <html lang="en"> 
    <head> 
     <!-- Theme Made By www.w3schools.com - No Copyright --> 
     <title>Arsiri Textile </title> 
     <meta charset="utf-8"> 
<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <!-- Theme Made By www.w3schools.com - No Copyright --> 
    <title>Arsiri Textile </title> 
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
    <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css"> 
    <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css"> 
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 
    <link rel="stylesheet" type="text/css" href="css/basic.css"> 
    <style> 

    </style> 
</head> 
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60"> 




<div class="header" style="height:60px;background:#330d00;width:1350px"> 


     <a class="navbar-brand" href="#myPage">ARSIRI TEXTILE |</a> 


     <ul class="nav navbar-nav navbar-left"> 


     </ul> 
     <ul class="nav navbar-nav navbar-right"> 

     <li><a href="#">About Us</a></li> 
      <li><a href="#">Contact Us</a></li> 
      <li><a href="">Login</a></li> 
     <li><a href="#"> Signup</a></li> 

     </ul> 
    </div> 


<div class="image" style="height:530px; width:1350px" > 
    <!doctype html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" /> 
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css" /> 

</head> 
<body> 
<div class="panel panel-default"> 
<div class="panel-heading" style="background:#330d00;"> 
    <h3 class="panel-title">Customer Registration</h3><br> 
</div> 
    <div class="panel-body" > 
<form class="form-horizontal" role="form" action="signupaction.php" method="post" > 
    <div class="form-group"> 
    <label for="name" class="col-sm-2 control-label">First Name</label> 
    <div class="col-sm-10" style="width:300px"> 
     <input type="text" class="form-control" id="name" name="firstname" required> 
    </div> 
    </div> 

     <div class="form-group"> 
    <label for="name" class="col-sm-2 control-label">Last Name</label> 
    <div class="col-sm-10" style="width:300px"> 
     <input type="text" class="form-control" id="name" name="lastname" required> 
    </div> 
    </div> 
     <div class="form-group"> 
    <label for="Address" class="col-sm-2 control-label">Address</label> 
     <div class="col-sm-10" style="width:300px"> 
      <textarea class="form-control" class="form-control" name="address"></textarea> 

    </div> 
    </div> 
<div class="form-group"> 
    <label for="name" class="col-sm-2 control-label">Contact No.</label> 
    <div class="col-sm-10" style="width:300px"> 
     <input type="text" maxlength="10" class="form-control" id="name" name="contactno" required> 
    </div> 
    </div> 
    <div class="form-group"> 
    <label for="name" class="col-sm-2 control-label">E-Mail</label> 
    <div class="col-sm-10" style="width:300px"> 
     <input type="email" class="form-control" id="name" name="emailaddress" required> 
    </div> 
    </div> 





    <div class="form-group"> 
    <label for="password" class="col-sm-2 control-label">Password</label> 
     <div class="col-sm-10" style="width:300px"> 
     <input type="password" class="form-control" id="pass" name="password" required> 
    </div> 
    </div> 
    <div class="form-group"> 
    <label for="password" class="col-sm-2 control-label">Confirm password 
    </label> 
     <div class="col-sm-10" style="width:300px"> 
     <input type="password" class="form-control" id="confirmpass" name="cpassword" required><br> 
    </div> 
    </div> 
    <div class="panel-footer" style="overflow:hidden;text-align:left;"> 

    <div class="col-sm-offset-2 col-sm-10"> 
     <input class="btn btn-success btn-sm" type=submit name=submit value=Submit > 
<input class="btn btn-success btn-sm" type=reset name=reset value=Cancel> 

    </div> 
</form> 





    </div> 
    </div> 
    </div> 
</div> 
</body> 

</div> 




<div class="footer " style="background:#330d00; height:60px ;width:1350px "> 
<p align="center" > Asiri all rights reserved</p> 
</div> 

相关的PHP脚本(ignupaction.php)上述HTML形式如下

<?php 

//importing db.php in the includes folder 

require("includes/db.php"); 


$fname=$_POST["firstname"]; 
$lname=$_POST["lastname"]; 

$address=$_POST["address"]; 
$contact=$_POST["contactno"]; 
$email=$_POST["emailaddress"]; 

$password=$_POST["password"]; 
$cpassword=$_POST["cpassword"]; 



$sql="INSERT INTO `signup` VALUES ('$fname','$lname','$address','$contact','$email','$password',$cpassword')"; 



$result=mysqli_query($db,$sql); 

if(!$result){ 
    echo "Unsuccessful signup"; 
} 
else{ 
    echo "Successful signup"; 
} 




?> 

当表单提交返回不成功注册!我该如何解决这个问题?

+2

你需要使用适当的错误处理通过PHP和查询,你有一个在这里',$ cpassword')''。这是(主题)错字。 –

+1

也许打开错误处理并回显错误(s)? – mplungjan

+0

也许缺少的报价是问题? '$ password',>>>> $ cpassword' – mplungjan

回答

0

$ SQL = “INSERT INTO signup VALUES( '$ FNAME', '$ L-NAME', '$地址', '$联系', '$电子邮件', '$密码',$ cpassword')” ;

你错过了最后一个变量。你有'$密码',$ cpassword'< -----失踪'。还要更改“注册”周围的勾号。

试试这个:

$ SQL =“INSERT INTO '注册' VALUES( '$ FNAME', '$ L-NAME', '$地址', '$联系', '$电子邮件',” $密码”, '$ cpassword')“;