News Feed
Jobs Feed
Sections




News Archive
php|architect:
Never Use $_GET Again
July 09, 2010 @ 09:15:48

In this new post to the php|architect blog Matt Butcher offers a security tip for all PHP developers out there - never use $_GET again.

You don't need to use $_GET or $_POST anymore. In fact, you probably shouldn't use $_GET and $_POST anymore. Since PHP 5.2, there is a new and better way to safely retrieve user-submitted data. [...] Rather than accessing the $_GET and $_POST superglobals directly, you can make use of PHP functions like filter_input() and filter_input_array().

He gives a code example of it in use and talks about the two things these functions do to help keep you safe - validate the data for correct match on criteria and sanitizing the value to ensure the return value is only what's requested. You can find more about these filter functions in the Filters section of the PHP manual.

1 comment voice your opinion now!
filter superglobal get security


blog comments powered by Disqus

Similar Posts

DevShed: Using Filters in PHP 5

Travis Swicegood's Blog: Repository Pattern in PHP

Pádraic Brady's Blog: One insecure PHP app too many?

PHPBuilder.com: Securing Data Sent Via GET Requests

Community News: WordPress 2.1.1 Dangerous, Upgrade


Community Events









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


development community api code testing introduction object example tool podcast interview release functional language zendframework2 event unittest opinion framework composer

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