View Single Post
  #10  
Old 11-14-2011, 02:28 AM
davidjohn12 davidjohn12 is offline
Junior Member
 
Join Date: Nov 2011
Posts: 5
davidjohn12 is on a distinguished road
Default

On the server side, the main difference between GET and POST is where the submitted is stored. The $_GET array stores data submitted by the GET method. The $_POST array stores data submitted by the POST method.
On the browser side, the difference is that data submitted by the GET method will be displayed in the browser’s address field. Data submitted by the POST method will not be displayed anywhere on the browser.
__________________
r4
Reply With Quote