When I go through a foreach loop, are the values of the individual items in 
the array changed?
For instance:
$variables = array($author_firstname, $author_lastname, $author_dob, 
$author_dod, $author_bio);
  foreach($variables as $value) {
         $value = strip_tags($value);
         $value = 
AddSlashes($value);
  }
will the values be changed outside of the loop?

John Meyer
[EMAIL PROTECTED]
Programmer


If we didn't have Microsoft, we'd have to blame ourselves for all of our 
programs crashing


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