Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/10/2015, 09:04
Avatar de chronos682
chronos682
 
Fecha de Ingreso: febrero-2004
Ubicación: Tunja - Boyacá - Colombia
Mensajes: 627
Antigüedad: 20 años, 2 meses
Puntos: 69
Respuesta: Poner botón eliminar en cada fila de una columna

Así como estás haciendo está bien pero falta cerrar la etiqueta a:
Código PHP:
Ver original
  1. <td><a href="EmpEliminar.php?IdRFQ=<?php echo $IdRFQ ?>">Delete</a></td>

Pero eso debes colocarlo dentro del while para que se repita con cada fila que vas creando:
Código PHP:
Ver original
  1. while ($fila = mysql_fetch_assoc($result)) {
  2. echo("\n <tr>
  3.  
  4. <td>".$fila['IdRFQ']."</td>
  5.  
  6. <td>".$fila['Data']."</td>
  7.  
  8. <td>".$fila['Suppliers']."</td>
  9.  
  10. <td>".$fila['Project Part Nombre']."</td>
  11.  
  12. <td>".$fila['RM Part Number']."</td>
  13.  
  14. <td>".$fila['Price']."</td>
  15.  
  16. <td>".$fila['Cry2']."</td>
  17.  
  18. <td>".$fila['MOQ']."</td>
  19.  
  20. <td>".$fila['Volume']."</td>
  21.  
  22. <td><a href="EmpEliminar.php?IdRFQ=<?php echo $IdRFQ ?>">Delete</a></td>
  23.  
  24.  
  25.  
  26.  
  27. </tr>");
  28. }
__________________
Si te gustó la respuesta dale +1

HERNÁN G. SIABATO M.
[email protected]