This seems to be a simple questions, but it is baffling me for some reason.
How do I create an if statement with multiple conditions. For example, I
cannot get either of these to work correctly:
if(isset($REMOTE_USER) && $AUTH_TYPE='securid') {
// do something
} else {
// do something else
}
OR
if((isset($REMOTE_USER)) && ($AUTH_TYPE='securid')) {
// do something
} else {
// do something else
}
Thanks.
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
--
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]