Home > Backend Development > PHP Tutorial > sql 当查询不到记录时返回的是什么

sql 当查询不到记录时返回的是什么

WBOY
Release: 2016-06-06 20:10:59
Original
1187 people have browsed it

我有一个登陆界面,我想用户输入用户名时,若不存在,则提示注册,但显然我可能不太清楚sql语句,所以一直有问题,调试时即使输入了数据库中不存在的用户名,也不会提示,望解答
if (!empty($_POST['login'])) {

<code>//考虑用户名不存在的情况,提示
$isset_sql="select username from user where username='$username'";

$is_exist=mysql_query($isset_sql); 
if(!$is_exist){
    echo "<script>alert('当前用户不存在,请您检查或选择注册!');window.location.href='article.login.php'</script>";
    exit();
    
}
</code>
Copy after login
Copy after login
<code>$query = "select password from user where username='$username'";
..............</code>
Copy after login
Copy after login

回复内容:

我有一个登陆界面,我想用户输入用户名时,若不存在,则提示注册,但显然我可能不太清楚sql语句,所以一直有问题,调试时即使输入了数据库中不存在的用户名,也不会提示,望解答
if (!empty($_POST['login'])) {

<code>//考虑用户名不存在的情况,提示
$isset_sql="select username from user where username='$username'";

$is_exist=mysql_query($isset_sql); 
if(!$is_exist){
    echo "<script>alert('当前用户不存在,请您检查或选择注册!');window.location.href='article.login.php'</script>";
    exit();
    
}
</code>
Copy after login
Copy after login
<code>$query = "select password from user where username='$username'";
..............</code>
Copy after login
Copy after login

首先,不要再用mysql_*一系列的连接方式了。请改成PDO或者MySQLi

然后你的问题答案:mysql_query只是发送查询请求到数据库,你还需要执行mysql_fetch_assoc来获取数据库的回应。

Warning: mysql_* 已经被PHP正式移除。

<code class="php">// 连接数据库部分
$db = new PDO('mysql:host=localhost;dbname=数据库名称','用户名','密码');
$db->exec('set names utf8');

// 使用预处理解决SQL注入漏洞的问题
$stmt = $db->prepare('select username from user where username = :username');
// 绑定参数
$stmt->bind(':username',$username,PDO::PARAM_STR);
// 执行查询
$stmt->execute();
// 获取数据
$user = $stmt->fetchColumn();
echo $user ? '已注册' : '未注册';
</code>
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template