php - How can I redirect to the log in page when I press the log out button -
when i'm using following code blank page
<form action="login.php "> <input type="submit" name="log out" value="log out">
use
header("location:login.php");
automatically redirect on page
Comments
Post a Comment