- 1
Where does all the information from input go and get stored??
3 Answers
+ 4
<form action="submit.php" method=POST>
^ in this file,
you can access them with $_POST['name']
+ 1
ok..i will actually get it when I'll learn phpđ°đłđđđŻ
0
or if it's method=GET; it's stored in the $_GET global. You can also access those data sets using $_REQUEST
http://php.net/manual/en/reserved.variables.request.php
http://php.net/manual/en/reserved.variables.get.php
http://php.net/manual/en/reserved.variables.post.php