+ 3
Example of a get and post form please??
2 Réponses
+ 2
Here are 2 very simple examples:
1) POST
<?php
<form action="#.php" method="POST">
<input type="text" name="name"></input>
<input type="submit" value="submit"></input>
</form>
?>
2) GET
<?php
<form action="#.php" method="GET">
<input type="text" name="name"></input>
<input type="submit" value="submit"></input>
</form>
?>
Here are the differences between POST & GEThttp://www.w3schools.com/tags/ref_httpmethods.asp
+ 1
In PHP tutorials section on SoloLearn Itself you will Find the Examples.