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.
<form name="spiel" action="index.php" method="GET">
<select name="spiel" onChange="submit ();">
<option value="0">
Auswahl
</option>
<option value="1">
Hamburg
</option>
</select>
<table align="center" border="2" bordercolor="0000FF">
<tr>
<td align="center" colspan="8">
<?php
if( isset($_GET['spiel']) ) {
switch( $_GET['spiel'] ) {
case 1:
$query = 'SELECT spiel_heim FROM mbjugend_spiel WHERE `spiel_id` = '.intval($_GET['spiel']).'';
break;
default:
echo "Spielpaarung auswählen!";
}
}
?>
</form>
<?php
if( !empty($_GET['spiel']) ) {
$query = '
SELECT
`spiel_heim`
FROM
`mbjugend_spiel`
WHERE
`spiel_id` = '.intval($_GET['spiel']).'
';
$result = mysql_query($query)
or die(mysql_error());
…
}
?>
<?php
if ($_GET['do'] == "neuespiel") {
mysql_query("INSERT INTO `mbjugend_spiel` (`spiel_id`,`heim`,`gast`) VALUES ('','".$_POST['spiel_id']."','".$_POST['heim']."','".$_POST['gast']."')");
?>
Neues Spiel gespeichert!
<?php
}
?>
<form action="index.php?do=neuespiel" method="post">
<table>
<tr>
<th colspan="2">
Neue Spielpaarung:
</th>
</tr>
<tr>
<td>
Spielnummer:
</td>
<td>
<input type="text" name="spiel_id">
</td>
</tr>
<tr>
<td>
Heim:
</td>
<td>
<input type="text" name="heim">
</td>
</tr>
<tr>
<td>
Gast:
</td>
<td>
<input type="text" name="gast">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Spielpaarung speichern">
</td>
</tr>
</table>
</form>
<?php
if( $_SERVER['REQUEST_METHOD'] == 'POST' && isset($_GET['do']) && $_GET['do'] == 'neuespiel' ) {
$query = '
INSERT INTO
`mbjugend_spiel`
SET
`spiel_id` = "'.mysql_real_escape_string($_POST['spiel_id']).'",
`heim` = "'.mysql_real_escape_string($_POST['heim']).'",
`gast` = "'.mysql_real_escape_string($_POST['gast']).'"
';
mysql_query($query);
if( mysql_affected_rows() > 0 ) {
echo 'Neues Spiel gespeichert!';
}
}
?>
<form name="spiel" action="index.php" method="GET">
<select name="spiel" onChange="submit ();">
<option value="0">
Auswahl
</option>
<option value="1">
Hamburg
</option>
</select>
<table align="center" border="2" bordercolor="0000FF">
<tr>
<td align="center" colspan="8">
<?php
if( isset($_GET['spiel']) ) {
switch( $_GET['spiel'] ) {
case 1:
if( !empty($_GET['spiel']) ) {
$query = ' SELECT `heim` FROM `mbjugend_spiel` WHERE `spiel_id` = '.intval($_GET['spiel']).'';
$result = mysql_query($query)
or die(mysql_error());
}
break;
default:
echo "Spielpaarung auswählen!";
}
}
?>
</form>