hello,
$qid = mysql_query("SELECT * FROM table");
$res = mysql_fetch_array($qid);
as an example, if this produces an error like this:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in ...
just put an @ before the mysql command.
$res = @mysql_fetch_array($qid);