tengo este codigo:
Código PHP:
Ver original
echo " <form name='f1' action='send_estimate.php' method='POST' > <table class='css3' id='mytable' cellspacing='0'> <tr class='nobg'> <th scope='col' width='60'><strong>Date</strong</th> <th scope='col' width='80'><strong>User</strong</th> <th scope='col' width='60'><strong>Pick Up</strong></th> <th scope='col' width='60'><strong>Drop Off</strong></th> <th scope='col' width='40'><strong>Map</strong></th> <th scope='col' width='100'><strong>Description</strong></th> <th scope='col' width='50'><strong>Estimate</strong></th> <th scope='col' width='50'><strong><a href=\"javascript:document.forms.f1.action='delete_main.php';document.forms.f1.submit();\">delete</a></strong></th> <th scope='col' width='25'><strong></strong></th> </tr> "; { echo" <tr class='spec' > <td align=center width=60>".$fila['date']."</td> <td align=center width=80>".$fila['user_name']."</td> <td align=center width=60>".$fila['pickup_zip_code']."</td> <td align=center width=60>".$fila['dropoff_zip_code']."</td> <td align=center width=40><a href=\"javascript:popup('mapa.php?pickup_zip_code=".$fila['pickup_zip_code']."&dropoff_zip_code=".$fila['dropoff_zip_code']."',800,600)\" >Map</a></td> <td align=center width=150>".$fila['description']."</td> <td align=center width=50><input type='text' name='quote' value='".$fila['quote']."' size='10'></td> <td align=center width=50><input type='checkbox' name='select[]' value='".$fila['id_data']."'></td> <td align=center width=25><button type='submit' name='login_submit'>Submit</button></td> </tr> <input type='hidden' name='id_data' value='".$fila['id_data']."'> <input type='hidden' name='notification' value='Quote Received'> "; } echo "</table></form>";
Se hace un consulta a la BD y devuelve los valores en un listado.
Tengo unos select que me permiten seleccionar uno de los registros listados y borrarlo.
Al final tengo un boton submit que envia el action="send_estimate.php" dependiendo del resultado que seleccione.
Cuando tengo un solo resultado de la consulta funciona bien, pero cuando tengo mas de uno y presiono "submit" me envia los datos del ultimo registro y no del registro que presione submit, no se si me explico.
A ver si alguien me da una idea del fallo por que yo lo veo todo bien..
Gracias por el tiempo prestado