> Can someone tell me how to properly compare the value 
> returned from the
> db to see if it is blank ?

> if ( (  
> mysql_result($db_result,$db_record,'order_date')=00000000000000)
> ) ) {


Two things, Jack. Enclose 00000000000000 in quotes, since it is a string,
but more importantly, use '==' instead of '=' for comparison. I hate it when
I do that :)

Kirk 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to