> <input type="text" name="form[]" />
> <input type="text" name="form[]" />
Alternatively, you could name="form[FirstName]" etc. for each field.
Then in the process...
foreach($form as $name => $value)
{
//process
}
I use that syntax to build forms submitting to email...
The //process gets replaced with
$message .= $name.": ".$value;
And at the end I invoke the mail() function.
-m