如何检查MySQL中是否有行?(即检查MySQL中是否存在用户名或电子邮件)
我需要帮助检查数据库中是否存在行。在我的示例中,该行包含一个电子邮件地址。我正在得到结果:
email no longer exists publisher@example.com
这是我当前使用的代码:
if (count($_POST)) {
$email = $dbl->real_escape_string(trim(strip_tags($_POST['email'])));
$query = "SELECT `email` FROM `tblUser` WHERE `email` = '$email'";
$result = mysqli_query($dbl, $query);
if (is_resource($result) && mysqli_num_rows($result) == 1) {
$row = mysqli_fetch_assoc($result);
echo $email . " email exists " . $row["email"] . "
";
} else {
echo "email no longer exists" . $email . "
";
}
}
有没有更好的方法来检查MySQL数据库中是否存在行(在我的情况下,检查MySQL中是否存在电子邮件)?
解决方案
以下是用于检查行是否存在的经过试验、测试和验证的方法。
(其中一些我自己使用,或过去使用过)。
编辑:我在使用mysqli_query()
两次的语法中犯了一个错误。请查阅修订版本。
即:
if (!mysqli_query($con,$query))
,本应简单显示为if (!$query)
。
- 我为忽略了那个错误而道歉。
旁注:'".$var."'
和'$var'
执行相同的操作。您可以使用其中任何一个,这两个都是有效语法。
以下是两个已编辑的查询:
$query = mysqli_query($con, "SELECT * FROM emails WHERE email='".$email."'");
if (!$query)
{
die('Error: ' . mysqli_error($con));
}
if(mysqli_num_rows($query) > 0){
echo "email already exists";
}else{
// do something
}
在您的情况下:
$query = mysqli_query($dbl, "SELECT * FROM `tblUser` WHERE email='".$email."'");
if (!$query)
{
die('Error: ' . mysqli_error($dbl));
}
if(mysqli_num_rows($query) > 0){
echo "email already exists";
}else{
// do something
}
您也可以使用mysqli_
with a prepared statement方法:
$query = "SELECT `email` FROM `tblUser` WHERE email=?";
if ($stmt = $dbl->prepare($query)){
$stmt->bind_param("s", $email);
if($stmt->execute()){
$stmt->store_result();
$email_check= "";
$stmt->bind_result($email_check);
$stmt->fetch();
if ($stmt->num_rows == 1){
echo "That Email already exists.";
exit;
}
}
}
Or a PDO method with a prepared statement:
<?php
$email = $_POST['email'];
$mysql_hostname = 'xxx';
$mysql_username = 'xxx';
$mysql_password = 'xxx';
$mysql_dbname = 'xxx';
try {
$conn= new PDO("mysql:host=$mysql_hostname;dbname=$mysql_dbname", $mysql_username, $mysql_password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
exit( $e->getMessage() );
}
// assuming a named submit button
if(isset($_POST['submit']))
{
try {
$stmt = $conn->prepare('SELECT `email` FROM `tblUser` WHERE email = ?');
$stmt->bindParam(1, $_POST['email']);
$stmt->execute();
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
}
}
catch(PDOException $e) {
echo 'ERROR: ' . $e->getMessage();
}
if($stmt->rowCount() > 0){
echo "The record exists!";
} else {
echo "The record is non-existant.";
}
}
?>
- 最好使用预准备语句来帮助防止SQL注入。
注意事项:
在处理上面使用/概述的表单和POST数组时,请确保POST数组包含值,并且POST方法用于表单并匹配输入的命名属性。
- 仅供参考:如果未指示显式,则窗体默认使用GET方法。
<input type = "text" name = "var">
-$_POST['var']
匹配。$_POST['Var']
不匹配。
- POST数组区分大小写。
咨询:
- http://php.net/manual/en/tutorial.forms.php
检查引用时出错:
- http://php.net/manual/en/function.error-reporting.php
- http://php.net/manual/en/mysqli.error.php
- http://php.net/manual/en/pdo.error-handling.php
mysql_
连接(和查询)。
- 从连接到查询必须使用相同的密码。
有关此问题,请参考以下内容:
- Can I mix MySQL APIs in PHP?
如果您使用的是mysql_
API,但没有选择使用它,请咨询以下关于堆栈的问答:
- MySql php: check if Row exists
mysql_*
函数已弃用,将从未来的PHP版本中删除。
- 是进入21世纪的时候了。
您还可以向(A)行添加唯一约束。
引用:
- http://dev.mysql.com/doc/refman/5.7/en/constraint-primary-key.html
- http://dev.mysql.com/doc/refman/5.7/en/alter-table.html
- How to check if a value already exists to avoid duplicates?
- How add unique key to existing table (with non uniques rows)
相关文章