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
Which method removes the last element from the end of an array?
What is difference between core php and framework?
What are the functions to be used to get the image's properties (size, width and height)?
Which php global variable is used for uploading a file?
How can you create a session in php?
What are the benefits of composer?
Tell me how is the ternary conditional operator used in php?
Why do we need abstract class in php?
Tell me what are the correct and the most two common way to start and finish a php block of code?
How do you check if a variable has been set in php?
Difference between mysql_connect and mysql_pconnect?
What is the goto statement useful for?
Do you know what's the difference between __sleep and __wakeup?
Which function would you use to read a line of data from a file in php?
How to initiate a session in php?