Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/08/2009, 17:52
Avatar de tampon
tampon
 
Fecha de Ingreso: julio-2009
Mensajes: 420
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: Ayuda con "TABLAS"

Código php:
Ver original
  1. echo "<table>
  2. <tr>
  3. <th>columna 1</th>
  4. <th>columna 2</th>
  5. <th>columna 3</th>
  6. </tr>";
  7.  
  8. while($row = mysql_fetch_array($sql))
  9.   {
  10.   echo " <tr>";
  11.   echo "<td>" . $row['columna_bd1'] . "</td>";
  12.   echo "<td>" . $row['columna_bd2'] . "</td>";
  13.   echo "<td>" . $row['columna_bd3'] . "</td>";
  14.   echo "</tr>";
  15.   }
  16. echo "</table>";