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="FormName" method="post" action="deineDatei.php">
<select name="select">
<?php
$res_sql = mysql_query("SELECT idSpalte FROM dbTable [...]");
while($row_sql = mysql_fetch_array($res_sql)){
?>
<option id="<?=$row_sql[idSpalte']?>"><?=$row_sql[idSpalte']?></option>
<?php
}
?>
</select>
</form>
<option id="<?=$row_sql[idSpalte']?>"><?=$row_sql[idSpalte']?></option>
<form name="FormName" method="post" action="...............php">
<select name="select">
<?php
$res_sql = mysql_query("SELECT idSpalte FROM dbTable [tnt]");
while($row_sql = mysql_fetch_array($res_sql)){
?>
<option id="<?=$row_sql['idSpalte']?>"><?=$row_sql['idSpalte']?></option>
<?php
}
?>
</select>
</form>
$res_sql = mysql_query("SELECT idSpalte FROM dbTable tnt");
$res_sql = mysql_query("SELECT idSpalte FROM dbTable tnt") or die(mysql_error());
<?php
$host = "..............";
$user = ".............";
$password = ".............";
$dbname = "............";
$tabelle ="tnt";
error_reporting(E_ALL);
$dbverbindung = mysql_connect ($host, $user, $password);
mysql_select_db(".............", $dbverbindung);
if(isset($_GET["load_ds"])) {
$result = mysql_query("select * from tnt order by id desc limit 1") or die(mysql_error());
if($row = mysql_fetch_array($result, MYSQL_NUM)) {
$feld1 = $row[1];
for($gsindex = 1; $gsindex < $gsanzahl; $gsindex++)
{
$feld = "feld$gsindex";
$$feld = "$row[$gsindex]";
}
}
}
?>