RE: [PHP] Not isset

2001-03-09 Thread Brian Paulson
To: [EMAIL PROTECTED] Subject: [PHP] Not isset how do I write a Not isset as in: if != isset($order) { $order=$Table."ID"; } mikep [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

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

[PHP] Not isset

2001-03-09 Thread Mike
how do I write a Not isset as in: if != isset($order) { $order=$Table."ID"; } mikep [EMAIL PROTECTED] -- 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: [EM