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.
<?php
if(!isset($_POST["formular"])) {
?>
<form action="<?php echo $_SERVER["PHP_SELF"];?>"method="post">
<p>
<input name="f1" type="radio" checked>
</p>
<p>
<input type="radio" name="f2">
</p>
<input type="submit" name="formular">
</form>
<?php
//script funktioniert nicht^^
}
if else($_POST['f1']) { //wenn f1 abgesendet wurde
print("hallo"); //hallo ausgeben
}
if else($_POST['f2']) { //wenn f2 gesendet wurde
print("hallo2"); //hallo 2 ausgeben
}
?>
<?php
if(!isset($_POST["formular"])) {
?>
<form action="<?php echo $_SERVER["PHP_SELF"];?>"method="post">
<p>
<input value="f1" name="radio" type="radio" checked="checked">
</p>
<p>
<input value="f2" type="radio" name="radio">
</p>
<input type="submit" name="formular">
</form>
<?php
}
elseif ($_POST['radio']=="f1") { //wenn f1 abgesendet wurde
print("hallo"); //hallo ausgeben
}
elseif ($_POST['radio']=="f2") { //wenn f2 gesendet wurde
print("hallo2"); //hallo 2 ausgeben
}
?>