Hi everyone,
Is there a way to loop through a $_POST array and extract out the names of the elements / form fields only --- as opposed to the field values?
For example:
foreach($_POST as $element)
{
$formfieldname = $element[fieldname];
}
Thanks,
rkdiekhoff