Facebook
From Reliable Bison, 8 Years ago, written in PHP.
Embed
Download Paste or View Raw
Hits: 408
  1. <?php
  2.    if (isSet($_GET['tekst'])){
  3.    $tekst = $_GET['tekst'];
  4.    print "Wpisana wartość to <b>$tekst</b><br />";
  5.    print'<a href="4-01.php">Powrót do formularza</a>';
  6. }else {
  7. print '<form action="4-01.php" method="get">';
  8. print '<div><input type="text" name="tekst">';
  9. print '<input type="submit" value="wyślij"/>';
  10. print '</div></form>';
  11. }
  12. ?>