hello.
I wrote a PhP script that verifies username and password found in a MYSQL table. So far, upon successfull user authentication, the user will see a "authorization approved" meesage. How do I redirect users to a specific page upon successfull authenication.
I tried to search for an answer to my question in this forum without success. Thank you for your assistance.
here is part of my code...
<?
....
$resultset = mysql_numrows($sqlquery)
if ($resultset ==0)
{
echo "you are not authorized";
}
else if ($resultset ==1)
{
echo " authorization approved";
}
?>