Okay, so here's the deal: I suck with forms and generating dynamic links. Here's the code that I'm working on
<div class="Normal_P">
<span class="Normal_C">
<form action="<?php getLink("http://www.atouchofmoore.net/certificate_stage3.php" array(
<?php
if(mysql_num_rows($r) > 0)
{
while($d = mysql_fetch_array($r))
{
$options .= "\n\t<option value=\"{$d[2]}\">{$d[1]}: {$d[2]}</option>";
}
}
for($x=0;$x<$cert_num;$x++)
{
$cert = ($x+1);
$get_data['cert"$x"'] = 'cert"$x"';
echo "\n<label for=\"$cert\">Certificate $cert : </label>\n<select name=\"cert[]\" id=\"$cert\">$options</select>\n<br />";
} // This does every certificate option for each certificate that the user requests all at once
?>
<a href="index.html"><input type="button" name="Cancel" /></a></center></form><br />
Now, I have it so that the user can choose to have up to 5 certificates, and I need a submit button that will send each certificate with only the selected option from the select input.