Ver Mensaje Individual
  #11 (permalink)  
Antiguo 20/11/2009, 11:31
Avatar de dcreate
dcreate
 
Fecha de Ingreso: octubre-2009
Ubicación: Veracruz
Mensajes: 536
Antigüedad: 14 años, 6 meses
Puntos: 22
Respuesta: Como hacer que un campo se repita

puede ser que pongas algo asi:
Código php:
Ver original
  1. <table>
  2. <tr><td>id</td></tr>
  3. <?php
  4. $bus=mysql_queyr("select *from tabla where campo='condicion'");
  5. $con=mysql_fetch_array($bus);
  6. do
  7. {
  8. echo '<tr>';
  9. echo '<td>'.$con['campo'].'</td>';
  10. echo '</tr>';
  11. }while($con=mysql_fetch_array($bus));
  12. ?>
  13. </table>

una idea, solo adecuala a lo q quierres