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
What is variable and data type?
Do you know how to get the ip address of the client?
What is action hooks and filter hooks?
What is php and its advantages?
What sized websites have you worked on in the past?
What is the difference between indexed and associative array?
What are php loops?
What is the difference between mysqli_fetch_object() and mysqli_fetch_array()?
What are computer variables?
Is it worth learning php in 2019?
What are some new features introduced in php7?
What is escape data in php?
What PHP stands for?
Which is a perfect example of runtime polymorphism?
How to get ip address of a server in php?