help, i'm using foreach to obtain values from $HTTP_POST_VARS. while it works fine, i get nothing but errors when trying using it inside a called function. i know about using global but it don't work
any help please
warren
It's a global, so inside your function you have to say:
global $HTTP_POST_VARS;
Same thing applies to $PHP_SELF, and any other predefined variables--they're all global.