PHP POST method
Λεπτομέρειες
- Λεπτομέρειες
- Κατηγορία: php
- Δημιουργηθηκε στις Τρίτη, 11 Δεκεμβρίου 2012 15:06
- Τελευταία Ενημέρωση στις Τρίτη, 11 Δεκεμβρίου 2012 15:10
- Δημοσιεύτηκε στις Τρίτη, 11 Δεκεμβρίου 2012 15:06
- Γράφτηκε από τον/την Administrator
- Εμφανίσεις: 11698
The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING.
- The POST method does not have any restriction on data size to be sent.
- The POST method can be used to send ASCII as well as binary data.
- The data sent by POST method goes through HTTP header so security depends on HTTP protocol. By using Secure HTTP you can make sure that your information is secure.
- The PHP provides $_POST associative array to access all the sent information using GET method.
example :
file post.html
file post.php