$connection = db_connect("Could not connect DB");
$SQL="SELECT id,PVLN from lhpl_side WHERE PVLN =\"\\Z\" ";
$result= mysql_query($SQL,$connection) or die (mysql_error());
$num = mysql_numrows($result);
Not too sure on this, but it might solve the problem. Use single quotes
instead...$connection = db_connect("Could not connect DB");
$SQL="SELECT id,PVLN from lhpl_side WHERE PVLN ='\Z'";
$result= mysql_query($SQL,$connection) or die (mysql_error());
$num = mysql_numrows($result);
--
Kyle Gibson
admin(at)frozenonline.com
http://www.frozenonline.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

