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.
<html>
<head>
<script type="text/javascript">
function auswahl()
{
var auswahlszahl;
var überprüfung[1];
überprüfung[0]=document.getElementById=("auswahlm1");
überprüfung[1]=document.getElementById=("auswahlm2");
for(i=0;i<3;i+=1)
if überprüfung[i].checked="on" then{
break;
auswahlszahl=i;
}
next i;
switch (i){
case "1":
window.location.href = "C:\Users\Andre\Documents\Html\schule\Vokabeln_Latein.html";
break;
case "2":
window.location.href="C:\Users\Andre\Documents\Html\schule\Vokabeln_Englisch.html";
break;
default :
alert("Bitte wählen sie ein Fach aus!!!")
break;
}
</script>
</head>
<body>
<form action="" onsubmit="auswahl();return false;">
Welche Vokabeln wollen sie lernen?<br><br>
<input id="auswahlm1" type="radio" name="UFach" value="Latain">Latein<br>
<input id="auswahlm2" type="radio" name="UFach" value="Englisch">Englisch<br><br>
<input type="submit" name="Fachwählen" value="weiter">
</form>
</body>
</html>
<form action="redirect.php">
<div>
<select name="redirect" onchange="location = this.value">
<option value="a.html">A</option>
<option value="b.html">B</option>
<option value="c.html">C</option>
</select>
<noscript>
<input type="submit" />
</noscript>
</div>
</form>
<?php
$host = $_SERVER['HTTP_HOST'];
$extra = $_GET['redirect'];
header("Location: http://$host/$extra");
exit;
?>