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.
<form action="index.php" method="POST">
<input type="text" name="mitteilung" size="61">
<input type="submit" value="senden" name="senden">
</form>
$handle = @mysql_connect("localhost", "login","PW") OR die(mysql_error());
mysql_select_db("chat",$handle) OR die(mysql_error());
if (!empty($_POST['senden']))
{
// erkommt jetzt zwar hierhinei, aber...
$nick = $_SESSION['nick'];
$Datum =date("d.m.y");
$Uhrzeit = date("H:i:s");
$Text = $_POST['mitteilung']; //..hier wird nichts mehr übergeben beim normalen drücken schon
}