RE: [PHP] Not isset

2001-03-09 Thread Brian Paulson
try if(!(isset($order))) { $order=$Table."ID"; } hth Thank you Brian Paulson Sr. Web Developer [EMAIL PROTECTED] http://www.chieftain.com 1-800-269-6397 -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 1:34 PM To: [EMAIL PROTECTE

RE: [PHP] Not isset

2001-03-09 Thread Boget, Chris
> how do I write a Not isset as in: > if != isset($order) > { > $order=$Table."ID"; > } if( !( isset( $order ))) { } I'm big on parens. :p OR if( empty( $order )) { } Chris