PHP GET method
Λεπτομέρειες
- Λεπτομέρειες
- Κατηγορία: php
- Δημιουργηθηκε στις Τρίτη, 11 Δεκεμβρίου 2012 14:55
- Τελευταία Ενημέρωση στις Τρίτη, 11 Δεκεμβρίου 2012 14:56
- Δημοσιεύτηκε στις Τρίτη, 11 Δεκεμβρίου 2012 14:55
- Γράφτηκε από τον/την Administrator
- Εμφανίσεις: 8602
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