+ 3

Example of a get and post form please??

19th Jan 2017, 8:46 AM
Samuel babalola
Samuel babalola - avatar
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
30th Jan 2017, 6:37 PM
Mirjalol
Mirjalol  - avatar
+ 1
In PHP tutorials section on SoloLearn Itself you will Find the Examples.
26th Jan 2017, 8:47 PM
Arpan Lunawat
Arpan Lunawat - avatar