Hi,
On my website i am trying to end a session and return to another page but i keep gettin this error..
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
<?
session_start() ;
if (!session_is_re gistered(myuser name)) {
header("locatio n:mainlogin.php ");
}
?>
<html>
<head><title>We lcome</title>
</head>
<body>
<h1> Login successful</h1>
<p>
<a href="logout.ph p"> Log Out!</a></p>
</body>
</html>
On my website i am trying to end a session and return to another page but i keep gettin this error..
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
<?
session_start() ;
if (!session_is_re gistered(myuser name)) {
header("locatio n:mainlogin.php ");
}
?>
<html>
<head><title>We lcome</title>
</head>
<body>
<h1> Login successful</h1>
<p>
<a href="logout.ph p"> Log Out!</a></p>
</body>
</html>
Comment