PHP GET method
Details
- Details
- Category: php
- Created on Tuesday, 11 December 2012 14:55
- Last Updated on Tuesday, 11 December 2012 14:56
- Published on Tuesday, 11 December 2012 14:55
- Written by Administrator
- Hits: 8509
There are two ways the browser client can send information to the web server.
The GET Method
The POST Method
The GET method sends the encoded user information appended to the page request. The page and the encoded information are separated by the ? character.
- The GET method produces a long string that appears in your server logs, in the browser's Location: box.
- The GET method is restricted to send upto 1024 characters only.
- Never use GET method if you have password or other sensitive information to be sent to the server.
- GET can't be used to send binary data, like images or word documents, to the server.
- The data sent by GET method can be accessed using QUERY_STRING environment variable.
- The PHP provides $_GET associative array to access all the sent information using GET method.
example:
html file : get.html
php file : get.php