PHP POST method

User Rating:  / 0

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.

PHP GET method

User Rating:  / 2

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.

Resize image with php

User Rating:  / 18

The following php class resizes the image to a specific size.

Create mysql database and tables with php

User Rating:  / 8

Create database and table(s) in MySQL Database with php code:

Select data from mysql database with PHP

User Rating:  / 0

How to select data from mysql database with php :

1. Make connection to mysql

PHP "Hello World" Program

User Rating:  / 1

write "Hello World !" with PHP :

   

Login  

   

     

© Developerpages