Hi,
> 3. modifying the code of the form to accommodate the spurious
> input that
> is received as this WordPress-as-a-CMS 'side effect'
I found a solution to get the data generated by the form. It is
indeed just a simple foreach() loop:
foreach($_POST as $key=>$element)
{
${$key}=$element;
}
André