> 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

Reply via email to