How would it be done ive tried addslashes( $_POST ) but it doenst work![]()
+rep

How would it be done ive tried addslashes( $_POST ) but it doenst work![]()
+rep
Lets set the stage on fire, and hollywood will be jealous.
You'd have to probaly use foreach post array and split them into single results applying the addslashes to each one of them, although that may be incorrect.
Something like that :SPHP Code:
foreach( $_POST as $var => $val )
{
$$var = addslashes( $val );
}
Works for get too.PHP Code:foreach( $_POST as $key => $value )
{
$_POST[ $key ] = addslashes( $value );
}
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Want to hide these adverts? Register an account for free!