Posted by Gazornenplat on 11/14/05 14:56
<?php
$page='page2.php'; // set page to anything you like via your lookup
if(isset($_REQUEST['data']))
{
echo "<script>document.location.replace('$page');</script>";
exit; // Stops further pointless processing
}
echo isset($_REQUEST['data']);
?>
<html>
<head><title></title></head>
<body>
<form>
<input name="data" type="text">
<input type="submit">
</form>
</body>
</html>
Navigation:
[Reply to this message]
|