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