Ogólnie funkcje mysql_* są używane w następujący sposób:
$id = 1234;
$query = 'SELECT name, genre FROM sometable WHERE id=' . $id;
// $query is a string with the MySQL query
$resource = mysql_query($query);
// $resource is a *MySQL result resource* - a mere link to the result set
while ($row = mysql_fetch_assoc($resource)) {
// $row is an associative array from the result set
print_r($row);
// do something with $row
}
Jeśli przekażesz coś do mysql_fetch_assoc, co nie jest zasobem wynikowym MySQL (niezależnie od tego, czy jest to ciąg znaków, obiekt, czy wartość logiczna), funkcja będzie skarżyć się, że nie wie, co zrobić z parametrem; czyli dokładnie to, co widzisz.
Powszechna wpadka :otrzymasz to ostrzeżenie, jeśli przekażesz coś (innego niż prawidłowy ciąg zapytania) do mysql_query
:
$id = null;
$query = 'SELECT name, genre FROM sometable WHERE id=' . $id;
$res = mysql_query($query);
// $res === FALSE because the query was invalid
// ( "SELECT name, genre FROM sometable WHERE id=" is not a valid query )
mysql_fetch_assoc($res);
// Warning: don't know what to do with FALSE, as it's not a MySQL result resource