Please help me
Posted: Sat Apr 03, 2004 5:50 pm
i have a password protect code
<?php
if ($_POST['pass'] == "123456") {
include ("membersonly.php");
}
else {
header("Location:error.html");
}
?>
and i want the membersonly.php to pop up
<?php
if ($_POST['pass'] == "123456") {
include ("membersonly.php");
}
else {
header("Location:error.html");
}
?>
and i want the membersonly.php to pop up