> 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 Mike
- RE: [PHP] Not isset Brian Paulson
- Boget, Chris

