bobrivers2003
Technical User
I am trying to set up a simple login feature with php. But instead of echoing the html once the user has signed in I want to display a different page called access.php. The user logs into login.php, this calls auth.php I then want auth.php to call access.php which will display the access area. Is this possible?
auth.php:
if ($password =="test") {
"open access.php"
}else {
"open denied.php"
}
Many thanks
auth.php:
if ($password =="test") {
"open access.php"
}else {
"open denied.php"
}
Many thanks