Answer Posted / ravi baba zaa
$_GET - It is build in super global array which collect the values from the FORM which has GET method.
Data is transferred with in URL string hence visible. Data transfered limit max. 100 characters.
$_POST - It is build in super global array which collect the values from the FORM which has POST method.
This method is safe as data is not shown in URL. Also there is
no data transfer limit. 8 Mb max size limit can be changed from PHP.ini
$_REQUEST - The $_REQUEST function can be used to collect form data sent with both the GET and POST methods.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Tell me how would you declare a function that receives one parameter name hello?
How to execute a function in php?
Tell me what is htaccess?
How to write php function in html onclick?
Will php die?
How can a cross-site scripting attack be prevented by php?
What does mvc stand for and what does each component do?
What are the new features in php 7?
How to make database connection in php?
What is data type in php?
What is array and function?
What is alias in php?
How to add comments in php?
Why php script is not running in browser?
How to get no of arguments passed to a PHP Function?