每次我使用 PHP 进行 INSERT 查询时,都会收到此错误:“提供的参数不是有效的 MySQL-Link 资源”
即便如此,查询也能完美运行,并且数据始终插入到数据库中。
我应该担心吗?
提前致谢!
编辑->这里是查询
函数.php
function connect(){
$h='myip';
$un='popguest';
$pw='mypassword';
$connection = mysql_connect($h, $un, $pw, false);
if(!$connection){
die('Error connecting to database: ' . mysql_error());
}
mysql_set_charset('uf8',$connection);
return $connection;
}
启动子.php
require_once("../functions/functions.php");
$f = new functions();
$f->connect();
$username=$_COOKIE["username"];
$p=$_GET['p'];
mysql_query('SET character_set_connection=utf8');
mysql_query('SET character_set_client=utf8');
mysql_query('SET character_set_results=utf8');
$result3 = mysql_query("INSERT IGNORE INTO popguest.guest (username, promoter) VALUES ('$username', '$p')");