Re: [PHP] function trouble: pass by referrence

2002-01-21 Thread Jim Lucas [php]
[$k] = strip_tags($i); } } and after this function $GLOBALS[HTTP_POST_VARS] will look like you want it to. Jim Lucas bend.com - Original Message - From: "Bryan McCloskey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 2:19 PM Subject: [PHP]

[PHP] function trouble: pass by referrence

2002-01-21 Thread Bryan McCloskey
Hello all, I'm trying to pass the $HTTP_POST_VARS array into a function to run some things like strip_tags, trim, and htmlspecialchars on all of the variables. If possible, I would like to pass this array by referrence, and have the function make changes to the actual array and not a copy. Accomp