The true point of that snippet was to apply something to all my variables.
Plus, not all servers have that option on :>
----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, July 07, 2001 7:49 AM
Subject: Re: [PHP] How to apply something to every variable


> 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]
>


-- 
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