How can I access information sent through GET on a form?
To access the data sent this way, you use the $_GET array like this:
Imagine you have a parameter called 'name' in the URL, here's how to access it:
www.myurl.com?name=johnny
$youare = $_GET["name"]; this will now contain the value 'johnny'
Comments on this Question/Answer
What are magic quotes?By: sangeeta, 22 Nov 2008 01:42:04
Reply to comments / post your own comment >>>
ASK A QUESTION
More forms PHP Questions
1.want to know simple logic and procedure of FORM VALIDATION? 2.How to check Login and password in PHP?I am having a form. Here, i am submitting the form using java script as its necessary. If the form method is get, i am able to get in redirection page and can get the hidden values in the form. But if the form method is post, i am not able to get those hi
What are magic quotes?
What are causes of seeing the actualPHP code in my web browser
How can I check that a data value is alphanumeric?
