Hi Chris!
On Fri, 06 Jul 2001, Chris Anderson wrote:

> I was playing around trying to find a way to addslashes() to all my
> variables, and I came up with this snippet. Hope it helps someone
> 
why don't you turn on magic_quotes_gpc then?

>  $keys = array_keys($HTTP_POST_VARS);
>  $post_size = sizeof($keys);
>  for($x = 0; $x < $post_size; $x++)
>  {
>   $temp = $keys[$x];
> //you can replace addslashes with whatever you want to use
>   ${"$temp"} = addslashes($HTTP_POST_VARS["$temp"]);
>  }
-- teodor

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to