Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>Dateioperationen</title>
  6. <link type="text/css" href=" " />
  7. </head>
  8. <body>
  9. <div id="content">
  10. <form action="<?php $_SERVER['PHP_SELF'] ?>" method="POST">
  11. <h3>Senden Sie mir eine Nachricht!</h3>
  12. <?php
  13. if ($fehler_nachricht) {
  14. echo "<ul>\n";
  15. foreach ($fehler_nachricht as $fehler) {
  16. echo "<li>".$fehler."</li>\n";
  17. }
  18. echo "</ul>\n";
  19. }
  20. ?>
  21. <label for="vorname">Vorname*</label><br />
  22. <input name="vorname" type="text" size="20" id="vorname" value="<?php echo $vorname ?>" /><br />
  23. <label for="nachname">Nachname*</label><br />
  24. <input name="nachname" type="text" size="20" id="nachname" value="<?php echo $nachname ?>" /><br />
  25. <label for="email">Email*</label><br />
  26. <input name= "email" type="text" size="20" id="email" value="<?php echo $email ?>" /><br />
  27. <label for="message">Bitte geben Sie Ihre Kommentare oder Fragen ein.</label><br />
  28. <textarea name="message" rows="3" cols="20" id="message"><?php echo $nachricht ?></textarea><br />
  29. <input type="submit" name="gesendet" value="Senden" />
  30. </form>
  31. </div>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement