01-07-2008, 07:27 PM
|
#2 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,216
Thanks: 17
|
Foreach is good for looping though arrays, PHP: foreach - Manual
For your specific problem, to go though all POST data would be
PHP Code:
foreach($_POST as $post) { $post = htmlentities($post ); }
|
|
|
|