PHP Code:
Code:
for(i=0;i<count($_POST);i++){
strip_tags($_POST[i]);
}
anyone got a good fix for this or maybe a pre-existince script i could use?
for security reasons, of course, I'm trying to strip tags from all of the post data preferably withOUT having to assign the $_POST[] variables to other variables before hand
|