Everytime I make a INSERT query using PHP, I get this error: "supplied argument is not a valid MySQL-Link resource"
Even so, the query works perfectly and the data is always inserted in the database.
Should I worry about that?
Thanks in advance!
EDIT-> here is the query
functions.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;
}
promoter.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')");
functions.phpinclude, or in the$f->connect(). My guess is you are calling something likemysql_close()somewhere when the link resource has already been closed, or you are using a connection resource in the wrong scope. Either way, more code needed. – Michael Berkowski Nov 24 '12 at 14:43