Thanks Paul,
It is almost exactly what I am looking for. I can adapt the process pages as you described.
I did have one small issue, it does not pass the quantity ordered to the process page.
After looking at the order page I changes the HTML for the quantity from:
<select name=" name="quantity_<?php echo $row['ID']; ?>">
to:
<select name="quantity"[] name="quantity_<?php echo $row['ID']; ?>">
I thought that might have been the problem, but it still will not display the quantity. I noticed the options for this was html and not php, but I didn't think that would make a difference.
On the process page I added:
echo '<hr><b>_POST</b>: <pre>'; print_r($_POST); echo '</pre>';
Which give me (when I selected
item 0 Qty 5
item 1 Qty 3
item 2 Qty
HTML results below:
ID Item Quantity
1 Do Not Enter
2 Stop
3 Hello
_POST:
Array
(
[order] => Array
(
[0] => 1
[1] => 2
[2] => 3
)
[name_1] => Do Not Enter
[quantity] => Array
(
[0] => 5
[1] => 3
[2] => 1
)
[name_2] => Stop
[name_3] => Hello
[Submit] => Submit
)
Any suggestions?
Thanks,
Don