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.
print_r($_POST);
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL]http://www.w3.org/TR/html4/loose.dtd[/URL]">
<html>
<head>
<title>Kontakt</title>
<style type="text/css">
body { margin-left:85px; margin-right:65px; margin-top:30px;
border:0px;}
html, body, textarea {
scrollbar-base-color:#fff5ee;
scrollbar-3d-light-color:#fff5ee;
scrollbar-arrow-color:#fff5ee;
scrollbar-darkshadow-color:#fff5ee;
scrollbar-face-color:#fff5ee;
scrollbar-highlight-color:#fff5ee;
scrollbar-shadow-color:#fff5ee;
scrollbar-track-color:#fff5ee;
}
#galerie {width:430px;
border-width:1px;
border-style:solid;
border-color:#ffa500;
text-align:center;
margin:1px
}
#galerie2 {
border-width:1px;
border-style:solid;
border-color:#ffa500;
padding:0.1em;
text-align:center;
background-color: #ffa500;
margin:1px
}
a:link { text-decoration:none; font-weight:bold; color:#000000; }
a:visited { text-decoration:none; font-weight:bold; color:#000000; }
a:hover { text-decoration:none; font-weight:bold; color:#696969; }
a:active { text-decoration:none; font-weight:bold; }
a:focus { text-decoration:none; font-weight:bold; }
.orange { background-color:#ffa500; padding-top:0px; border-style:solid; border-color: #ffa500;
margin:-1px; padding-bottom:2.5px; border-width:1px; max-width:100%;}
</style>
</head>
<div align="center">
<body style="background-image: url(background3.JPG);
background-attachment:fixed; ">
</p>
<p id="galerie">
<span><table style="table-layout:fixed" width="100%">
<tr>
<td style="background-color:#ffa500">Kontakt</td>
</tr>
</table></span>
<span>
<?php
$daten=$_POST[eintrag]."<br>von <a href=mailto:".$_POST[email].">".$_POST[name]."</a><br><br>";
$datenbank = "daten.dat";
$datei = fopen($datenbank,"a");
fwrite($datei, $daten);
?>
Vielen Dank für Ihren Eintrag<br>
<a href="eintragen.php">Zurück zum Gästebuch</a>
</span>
</p>
</div>
</body>
</html>
$daten = $_POST[eintrag]."<br>von <a href=mailto:".$_POST[email].">".$_POST[name]."</a><br><br>";
$daten = $_POST['eintrag']."<br />von <a href='mailto:".$_POST['email']."'>".$_POST['name']."</a><br /><br />";
<form action="gb.php" method="post">
<tr>
<td>Name:</td>
<td><input name="Name" size="20" type="text"></td>
</tr>
<tr>
<td>eMail:</td>
<td><input name="Email" size="20" type="text"></td>
</tr>
<tr>
<td>Nachricht:</td>
<td><textarea cols="25" name="Nachricht" rows="5"></textarea></td>
</tr>
<tr>
<tr>
<td align="right" colspan="2"><input name="Send" type="submit" value="Abschicken"> <input name="Reset" type="reset" value="Löschen"></td>
</tr>
</form>
$_POST['Email']
$_POST['Name']
$_POST['Nachricht']
<?php
$date = time();
$date = date("H:i d.M.Y", $date);
?>