gpt4 book ai didi

php - 如何查看MySQL查询错误详情?

转载 作者:行者123 更新时间:2023-11-29 03:53:06 25 4
gpt4 key购买 nike

我正在尝试插入到表格中,但无法正常工作。所以我告诉我的应用程序如果你不能插入然后重定向到它正在做的 home.php。所以,某处肯定有错误。但是,它没有告诉我,有没有办法查看查询错误?这是代码:

if(0 === count($errors)){
// Sanitize name and phone number
$contact_name = mysql_real_escape_string($_POST['name']);
$phone_number = mysql_real_escape_string($_POST['phone_number']);

$query = "INSERT INTO `ani` (`ContactName`, `PhoneNumber`)
VALUES ('$contact_name', '$phone_number'";

$result = mysql_query($query);

if(mysql_errno() === 0){
header("Location: pinless.php");
} else {
header("Location: home.php");
// Here I want to see what the heck is wrong with the above query
// instead of redirecting
}
}

最佳答案

echo mysql_error();

关于php - 如何查看MySQL查询错误详情?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7301261/

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