adding form to array

Soo, I have a list of order that show up on one page, called todays orders (for a delivery service). Currently, an order is posted to one table, goes to the “today’s orders” page, and I’m trying to add a confirmation button at the end of each order in the array to add to another table. With the code below, it works with the first order in the list, but when I try to confirm the orders below it, nothing happens.

while($row = mysql_fetch_array($result)){
echo $row[‘NAME’]. “
”. $row[‘DRIVER’].;
echo "

";[size=2][font=verdana]

show it shows up for example:

John Doe
Driver Name
[Order Complete]

John Doe 2
Driver Name
[Order Complete]

John Doe 3
Driver Name
[Order Complete]

but only the first one works when you hit order complete. [/font][/size]

Sponsor our Newsletter | Privacy Policy | Terms of Service