12 lines
159 B
PHP
12 lines
159 B
PHP
<?php
|
|
|
|
$val = $_REQUEST['zahl'];
|
|
|
|
if ($val == 420) {
|
|
header("Location: waltermode2.html");
|
|
} else {
|
|
header("Location: waltermode.html");
|
|
}
|
|
|
|
?>
|