while (list($key, $val) = each ($HTTP_POST_VARS)) {
${$key} = addslashes($val);
}
- Russ
-----Original Message-----
From: Chris Anderson [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 06, 2001 3:07 PM
To: [EMAIL PROTECTED]
Subject: [PHP] How to apply something to every variable
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
$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"]);
}
--
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]