PHP 4

From Ilianko
Revision as of 13:49, 20 October 2013 by Anko (talk | contribs) (Created page with "== GET == <?php print_r($_GET) ?> *http://localhost/?user=Ivan *http://localhost/?user=Ivan&game=7 == POST == <code><pre> <? print_r($_POST) ?> <form method=POST>...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

GET

<?php
  print_r($_GET)
?>



POST

<?   
  print_r($_POST)
?>
<form method=POST>
  <input type=text name=user>
  <input type=submit name=button value="natisni">
</form>