by instinct46 on Tue Mar 27, 2007 2:00 pm
urm u need to be using php as well soz but here the code
--- main.htm
<HTML><HEAD><TITLE></TITLE></HEAD>
<BODY>
<FORM action="password.php" method="post">
Password: <INPUT name="password" />
</FORM>
</BODY>
</HTML>
--- password.php
<HTML>
<BODY>
<?php
$password = $_POST['password']
if ( $password == 'PasswordYouWant'){
echo "<a href=http://www.google.com>click here to be forwarded</a>";
}else
{
echo "YOU ENTERED THE WRONG PASSWORD!!";
}
?>
</BODY>
</HTML>
---
sorry bout not being able redirect but tht close to wat u want :/