> Can anyone advise or direct me to the documentation that references how to > send a user to a URL if an 'if' statement is satisfied?
Assuming you hadn't sent any output before:
if ($condition){
header("Location: http://wherever.com");
exit;
}
--
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]

