This tutorial contains a simple PHP implementation which will prevent unwanted access to certain pages.
Simply place your page inside a large PHP if statement:
<?php
if($_POST['password'] == 'Any_Password_You_Like'){
?>
<!--html code for page goes here -->
<?php
} else {
?>
<script language=javascript>
window.open("http://www.yoursite.com/default.htm");
</script>
<?php
}
?>
The code is translated server side and will not reveal your password. It will generate either the page protected or apply the else, which re-directs to a default page. The default segment could also be written in PHP and simply echo text to the screen.
Questions/Comments: [email protected]
-William. § (marvin_gohan)