PHP POST method
Details
- Details
- Category: php
- Created on Tuesday, 11 December 2012 15:06
- Last Updated on Tuesday, 11 December 2012 15:10
- Published on Tuesday, 11 December 2012 15:06
- Written by Administrator
- Hits: 11437
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