rechnung_eingabe.php - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of rechnung_eingabe.php.php

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4.     <title>Rechnung</title>
  5.     <meta charset="utf-8">
  6. </head>
  7. <body>
  8.     <h1 style="text-align: center;">Rechnung</h1>
  9.     <form action="rechnung_ausgabe.php" method="get">
  10.         Anrede <input type="text" name="anrede">
  11.         <br/>
  12.         Vor- und Nachname <input type="text" name="name">
  13.         <br/>
  14.         Wohnort <input type="text" name="ort">
  15.         <br/>
  16.         Postleitzahl <input type="text" name="postleitzahl">
  17.         <br/>
  18.         <br/>
  19.         Telefonnummer <input type="text" name="telefon">
  20.         <br/>
  21.         <br/>
  22.         <br/>
  23.         Bezeichnung<input type="text" name="öl">
  24.         <br/>
  25.         Menge<input type="text" name="menge">
  26.         <br/>
  27.         Einzelpreis(netto)<input type="text" name="einzelpreis">
  28.         <br/>
  29.         Gesamtpreis(netto)<input type="text" name="gesamtpreis">
  30.         <input type="submit" name="Bestätigen">
  31.     </form>
  32. </body>
  33. </html>
  34.  
File Description
  • rechnung_eingabe.php
  • PHP Code
  • 17 Nov-2019
  • 933 Bytes
You can Share it: