Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Scheibenknopf.de</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.Stil3 {
font-family: Arial, Helvetica, sans-serif;
color: #333333;
font-size: 12px;
}
.Stil6 {
color: #CC0000;
font-weight: bold;
font-size: 16px;
}
-->
</style>
</head>
<?php
if(isset($_POST["bundesland"])) // wenn bundeesland gesetzt wurde dan zuweisen
{
$bundesland = $_POST["bundesland"];
}
if(isset($_POST['submit_bund'])) // wenn der weiter button gedrückt wurde dann zum bundesland weiterleiten...
{
header("Location: ".$bundesland.".php");
}
else
{
?>
<html>
<body>
<form name="form1" action="<?php echo $PHP_SELF; ?>" method="post">
<table width="550" border="0" cellpadding="0">
<tr>
<td width="30"> </td>
<td width="514"><div align="center">[img]img/start.jpg[/img]</div></td>
</tr>
<tr>
<td height="236">[img]img/dot_white.gif[/img]</td>
<td>
<p align="center" class="Stil3">
<span class="Stil6">Knopf melden</span> </p>
<p class="Stil3">[b]Bitte zuerst das Bundesland auswählen, in dem der Knopf gefunden wurde. [/b]</p>
<p class="Stil3">Bundesland:
<select name="bundesland" class="text">
<option>Baden-Württemberg</option>
<option>Bayern</option>
<option>Berlin</option>
<option>Brandenburg</option>
<option>Bremen</option>
<option>Hamburg</option>
<option>Hessen</option>
<option>Mecklenburg-Vorpommern</option>
<option>Niedersachsen</option>
<option>Nordrhein-Westfalen</option>
<option>Rheinland-Pfalz</option>
<option>Saarland</option>
<option>Sachsen</option>
<option>Sachsen-Anhalt</option>
<option>Schleswig-Holstein</option>
<option>Thüringen</option>
</select>
[img]img/dot_white.gif[/img]
<input type="submit" name="submit_bund" value="Weiter"/>
</tr>
</p>
</td>
</tr>
<tr>
<td height="69"> </td>
<td><div align="center" class="Stil4"></div></td>
</tr>
</table>
</form>
</body>
</html>
<?php
}
?>