Ralph Leonen wrote:
2 - How can I resubmit the checkbox array (along with the other data) to the same page, using $PHP_SELF, so I can add the valid data to the database?
You could try adding this to the form on confirmrecord.php3:
<?php
foreach($Styles as $key => $value)
{
printf ("<input type=\"hidden\" name=\"Styles[%d]\" value=\"%s\">",
$key, htmlentities($value));
}
?>
This should make the array follow along.