I have a table of products listed. It's created dynamically from my DB. For each product row there is a checkbox, and if the client wants that product they just check it off. Then hit Submit.
Now when the order is submitted to my Form Handler page it appears that nothing is getting passed in the array.
There are now values. Here's the code I'm using on the Form page.
$i = 0;
while($row = mysql_fetch_array($result)){
$sql3 = "SELECT * from products where sku = $row[1]";
$result3 = mysql_query($sql3);
$row3 = mysql_fetch_row($result3);
echo "<tr><td><input type='checkbox' name='order[.$i.]' id='order[$i]' value='$sku'>$sku<td>$row3[1]</td><td>$row3[4]</td><td>$row3[2]</td><td>$row3[3]</td></tr>";
$i++;
}
No matter how many boxes are checked etc. nothing get's passed for any value any ideas?? I'm sure it's something simple I just overlooked.
Thanks