Sending a user to a specified page with PHP
Posted: Fri Feb 28, 2003 12:57 pm
I need to send a user to a certain page depending if they typed in the correct info in a Login box or not.
Here is the example code, it might help you with my question:
Here is the example code, it might help you with my question:
Code: Select all
// Check to see if they were accepted, if so send them to thier specified pages
if ($accepted == "True")
{
// Send to voting page
}
else
{
// Send to Oops! page
}