PHP POST method
- 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: 11438
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.More... Add new comment
PHP GET method
- Details
- Category: php
- Created on Tuesday, 11 December 2012 14:55
- Last Updated on Tuesday, 11 December 2012 14:56
- Published on Tuesday, 11 December 2012 14:55
- Written by Administrator
- Hits: 8510
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
- Details
- Category: php
- Created on Wednesday, 17 October 2012 11:07
- Last Updated on Wednesday, 17 October 2012 11:07
- Published on Wednesday, 17 October 2012 11:07
- Written by Administrator
- Hits: 14972
The following php class resizes the image to a specific size.
Create mysql database and tables with php
- Details
- Category: php
- Created on Tuesday, 22 May 2012 09:18
- Last Updated on Tuesday, 22 May 2012 09:22
- Published on Tuesday, 22 May 2012 09:18
- Written by Administrator
- Hits: 12565
Create database and table(s) in MySQL Database with php code:
Select data from mysql database with PHP
- Details
- Category: php
- Created on Tuesday, 08 May 2012 09:18
- Last Updated on Tuesday, 22 May 2012 10:53
- Published on Tuesday, 08 May 2012 09:18
- Written by Administrator
- Hits: 8522
How to select data from mysql database with php :
1. Make connection to mysql
PHP "Hello World" Program
- Details
- Category: php
- Created on Tuesday, 31 January 2012 15:07
- Last Updated on Wednesday, 04 April 2012 09:25
- Published on Tuesday, 31 January 2012 15:07
- Written by Administrator
- Hits: 8119
write "Hello World !" with PHP :