I have a form that submits lots of small fields that I need to loop through and perform actions on.
The form looks like this:
You can loop over $_POST and read the values: http://www.php.net/manual/en/reserved.variables.post.php
foreach($_POST as $key =>$value){ // do something using key and value }