大家好,我正在尝试登录/注册,但我在努力解决以下问题。注册时会显示一条消息(注册已完成),但同时也出现错误,我无法摆脱。
也可以在已经使用了用户名的情况下显示一条消息,但没有。我得到的错误如下。
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, bool
given in C:\xampp\htdocs\test\registration.php on line 16
我在registration.php中使用的代码是
<?php
session_start();
$con = mysqli_connect('127.0.0.1','jstam','12345');
mysqli_select_db($con, 'userregistration');
$name = $_POST['user'];
$pass = $_POST['password'];
$s = "select * from usertable where name = 'name' && passoword = '$pass'";
$result = mysqli_query($con, $s);
$num = mysqli_num_rows($result);
if($num == 1){
echo"Gebruikersnaam in gebruik";
}else{
$reg= "insert into usertable (name , password) values ('$name' , '$pass')";
mysqli_query($con, $reg);
echo"Registratie succevol";
}
?>
答案 0 :(得分:0)
我相信您的代码中可能有错字
$s = "select * from usertable where name = 'name' && passoword = '$pass'";
我认为密码应该是密码。另外,名称应为$ name
$s = "select * from usertable where name = '$name' && password = '$pass'";
正如其他人所建议的那样,您的代码容易受到SQL注入的攻击,因此不应在生产中使用。