> Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource 
> in /srv/www/htdocs/web1/html/inc/class/sql.php on line 88

I would guess that there is some problem with the syntax of your SQL. 
If you make it a habit to do queries like this:

$sql = "SELECT * FROM table";
$result = mysql_query($sql) or die(mysql_error() . " with query $sql");

then the error usually becomes ovious.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to