Skip to content

Instantly share code, notes, and snippets.

@CHH
Created November 22, 2008 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CHH/27870 to your computer and use it in GitHub Desktop.
Save CHH/27870 to your computer and use it in GitHub Desktop.
<html>
<body>
<title>Ein Kontaktformular</title>
<?php
echo "<b><br>Projekt: Hello World";
$Vorname="Florian";
$Nachname="Hrubicek";
echo "<b><br>Name: $Vorname $Nachname";
$Adresse="Holzing 6";
$PLZ="3300 Winklarn,";
echo "<b><br>Adresse: $PLZ $Adresse";
$TelephonNummer="0676/7809552";
echo "<b><br>Telephon Nummer: $TelephonNummer";
if($Vorname="Florian"){
echo "<b><br><hr><h3>Hallo Flo";
}
$datum=date("d.M.Y. H:i:s");
echo "<br><b> $datum";
echo "<hr>";
echo '<img src="C:\xampp\htdocs\uebungen\img\1.gif" />';
?>
<form action="antwort.php" method=post>
Name: <input type=text name="Vorname" size=20>
</form>
</html>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment