gpt4 book ai didi

php - 检查数据库中是否存在用户名

转载 作者:可可西里 更新时间:2023-11-01 07:58:46 24 4
gpt4 key购买 nike

如果用户名存在,就很难阻止用户注册。这是我的代码:

include('../connection.php');
//get all the names and values that have been posted.
$username = $_POST['username'];
//check if username exists
$sql = "SELECT * FROM tbl_Freelancers WHERE User_Username = '".$username."'";
$result = mysqli_query($con,$query);
if(mysql_num_rows($result)>=1)
{
echo"name already exists";
}
else
{ // excecute insert query

我试过很多其他的东西来让它工作,但是由于某些原因我的代码不喜欢我……

最佳答案

mysql_num_rows更改为mysqli_num_rows

if(mysqli_num_rows($result)>=1)//You are mixing the mysql and mysqli, change this line of code
{
echo"name already exists";
}
else
{ //

在查询中使用bind param或对值进行适当转义。

关于php - 检查数据库中是否存在用户名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26357597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com