我的表单完成后出现此错误,尽管成功的响应已正确显示并且该项目已添加到数据库中。
这是错误
警告:mysql_free_result():提供的参数不是第18行/home/site4/public_html/lab/mailinglist/mailing_list_external.php中的有效MySQL结果资源
第18行
mysql_free_result($check_res);
并且整个PHP文件都是
<?php
include("mailing_list_include.php");
// determine if they need to see the form or not
if ($_POST["email"] == "") {
header("Location: mailing_list_external.php");
exit;
} else {
// connect to database
doDB();
// check that the email is in list
emailChecker($_POST["email"]);
// get number of results and do action
if (mysqli_num_rows($check_res) < 1) {
// free result
mysql_free_result($check_res);
// add record
$add_sql = "INSERT INTO subscribers (email)
VALUES('".$_POST["email"]."')";
$add_res = mysqli_query($mysqli, $add_sql)
or die(mysqli_error($mysqli));
$display_block = "<p>Thanks for signing up!</p>";
// close connection to mysql
mysqli_close($mysqli);
} else {
// print failure message
$display_block = "<p>You're already subscribed!</p>";
}
}
?>
<html>
<body>
<?php echo "$display_block"; ?>
</body>
</html>
就像我说的,它工作正常,但我仍然得到这个错误......
这是包含文件的代码(mailing_list_include.php)
<?php
function doDB() {
global $mysqli;
// connect to server and select database; you may need it
$mysqli = mysqli_connect("localhost", "XXX",
"XXX", "XXX");
// if connection fails, stop script execution
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
}
function emailChecker($email) {
global $mysqli, $check_res;
//check that email is not already in list
$check_sql = "SELECT id FROM subscribers
WHERE email = '".$email."'";
$check_res = mysqli_query($mysqli, $check_sql)
or die(mysqli_error($mysqli));
}
?>
答案 0 :(得分:1)
如果您使用的是mysqli,我认为您应该使用mysqli_close()关闭连接或mysqli_free_result()
mysqli_free_result($check_res);
这里你使用的是另一个库中的函数
答案 1 :(得分:1)
使用mysqli_free_result - 我怀疑是因为你使用的是mysql_free_result,这是一个不同的库
答案 2 :(得分:0)
假设这只是注册用户并发送电子邮件的基本脚本,那么您可以通过完全消除_free_result和_close调用来解决问题。除非您在一个请求中处理数千条记录,否则它们实际上没有用处。
在php中,脚本完成后会自动释放所有资源。