Me explico lo que intento es que atraves de un "checkbox" se pueda seleccionar varios productos y con un solo boton se pueda enviar al carrito de compras.
Les dejo el Código
Código HTML:
<table border="1" cellpadding="2" cellspacing="3"> <tr> <td width="299">Productos</td> </tr> <?php do { ?> <tr> <form method="post" action=" agregarproducto.php"> <td><table width="99%" border="1"> <tr> <td><strong>Nombre:</strong> <?php echo $row_rsOferta['producto']; ?></td> </tr> <tr> <td><strong>ID:</strong> <?php echo $row_rsOferta['idpro']; ?></td> </tr> <tr> <td><img src="<?php echo $row_rsOferta['imagen']; ?>" alt="<?php echo $row_rsOferta['producto']; ?>" width="100" height="80" /></td> </tr> <tr> <td><strong>Precio:</strong> <?php echo $row_rsOferta['precio']; ?></td> </tr> <tr> <td>Cantidad: <label> <input name="cantidad" type="text" id="cantidad" size="7" /> </label></td> </tr> <tr> <td> Pedir: <input name="codigoproducto" type="hidden" id="codigoproducto" value="<?php echo $row_rsOferta['idpro']; ?>" /> <input name="origenlistaproductos" type="hidden" id="origenlistaproductos" value="1" /> <label> <input type="checkbox" name="seleccion" id="seleccion" /> <input type="submit" name="Enviar" id="Enviar" value="Enviar" /> </label></td> </tr> </table></td> </form> </tr> <?php } while ($row_rsOferta = mysql_fetch_assoc($rsOferta)); ?> </table>