Security tip i found
Posted: Sun Feb 26, 2012 11:09 am
Whilst looking around the internet at other peoples code, I noticed something like this:
Just thought you'd like to know
$username = array_map('strip_tags',$_POST['username']);After looking at what it does, it basically will do the same as magic_quotes_gpc() however, without the need to check whether magic quotes is on or off.
Just thought you'd like to know