In this video we are going to discuss POST method in detail which is defined in PHP. The POST method transfers the 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 PHP provides $_POST associative array to access all the sent information using POST method.