I am just curious if there is any way (simple) to take the results of a POST form, and gererate it into an array of say variable[form_field_name]
$array = array(); foreach($_POST as $key => $value) $array[$key] = $value; print_r($array);