Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<html>
<body>
<?php
if ($_POST["switch"])
{
$zahl = 0;
if ($C1 == "ON") {
$zahl = $zahl + 1;
}
if ($C2 == "ON") {
$zahl = $zahl + 2;
}
if ($C3 == "ON") {
$zahl = $zahl + 4;
}
if ($C4 == "ON") {
$zahl = $zahl + 8;
}
if ($C5 == "ON") {
$zahl = $zahl + 16;
}
if ($C6 == "ON") {
$zahl = $zahl + 32;
}
if ($C7 == "ON") {
$zahl = $zahl + 64;
}
if ($C8 == "ON") {
$zahl = $zahl + 128;
}
$command="E:\Programme\z-parswitch\Z-ParSwitch.exe -schalt 888 ".$zahl." 1000 0";
exec($command);
}
?>
<form method="post" action="dosen.php">
<input type="checkbox" name="C1" value="ON">Dose1</p>
<input type="checkbox" name="C2" value="ON">Dose2</p>
<input type="checkbox" name="C3" value="ON">Dose3</p>
<input type="checkbox" name="C4" value="ON">Dose4</p>
<input type="checkbox" name="C5" value="ON">Dose5</p>
<input type="checkbox" name="C6" value="ON">Dose6</p>
<input type="checkbox" name="C7" value="ON">Dose7</p>
<input type="checkbox" name="C8" value="ON">Dose8</p>
<button type="submit" name="switch" value="yes">Abschicken</button>
</form>
</body>
</html>
<?
if (!$_GET["test"])
{
header("Location:registerglobalscheck.php?test=1");
}
?>
<html>
<body>
<?
if ($_GET["test"])
{
if ($test)
{
printf("register_globals=on<br>");
}
else
{
printf("register_globals=off<br>");
}
}
?>
<a href="registerglobalscheck.php">Check state of register_globals</a>
</body>
</html>