Where does all the information from input go and get stored?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Where does all the information from input go and get stored??

15th Jan 2017, 4:03 AM
Asad Hashmi
Asad Hashmi - avatar
3 Answers
+ 4
<form action="submit.php" method=POST> ^ in this file, you can access them with $_POST['name']
15th Jan 2017, 4:05 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 1
ok..i will actually get it when I'll learn php๐Ÿ˜ฐ๐Ÿ˜ณ๐Ÿ˜’๐Ÿ˜•๐Ÿ˜ฏ
15th Jan 2017, 4:06 AM
Asad Hashmi
Asad Hashmi - avatar
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
15th Jan 2017, 4:58 AM
Louis Milotte
Louis Milotte - avatar