and if i want to process just the post variables
, which are named following some patter in the firsts letters like:
field_whatever_name_it_have
it can be this script:
foreach ($_POST as $var => $value ) {
//processing this var
if(substr($value, 0 , 8) == "field_"){
echo "<br>".$var." -- ".$value;
}
}