News Feed
Jobs Feed
Sections




News Archive
SitePoint PHP Blog:
On $_GET and $_POST
February 05, 2009 @ 11:14:33

On the SitePoint PHP Blog today Troels Knak-Nielsen takes a deeper look at two of the superglobals a lot of PHP developers take for granted - $_GET and $_POST.

When a PHP script is invoked by a web server, it is as the result of a HTTP request. A HTTP request has a target URI and that URI consists of different parts. One of these parts is the query. As the PHP process starts up, the query gets parsed into an associative array. And for some reason, somebody decided on the unfortunate $_GET, because it's what you use for GET requests - right? Wrong!

He points out that all HTTP requests, regardless if they're GET or POST will have that GET information (not necessarily in $_GET, though). He also mentions another commonly used (and sometimes abused) superglobal - $_FILES. His biggest gripe, though, is that the naming of the variables confuses the developer as to the true content of the HTTP request.

And I won't even comment on the nastiness of $_REQUEST.
6 comments voice your opinion now!
get files request superglobal http request content confuse


blog comments powered by Disqus

Similar Posts

IBM developerWorks: How to internationalize your PHP apps

WebReferece.com: How to Use the HTTP Protocol

David Sklar\'s Blog: Parsing Reasonably-sized HTTP Responses

Paul Reinheimer's Blog: Stop Messing up CSRF Protection

Matthew Weier O'Phinney's Blog: From the inside-out: How to layer decorators


Community Events











Don't see your event here?
Let us know!


development functional opinion framework phpunit introduction language series application code zendframework2 community interview release unittest conference tool podcast example testing

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework