Hello, how can I loop between all variables sent through post method? for example if I put: $HTTP_POST_VARS["Submit"] I got the value of the submit field, but I need to loop through all sent fields. (Like in Java returns an Enumeration)
Thanks
I think you mean $_POST['Submit'].
It's just an array...
$clean = array_map('stripslashes',$_POST);
http://be2.php.net/array_map
ok, that's it.
Thank you.