/ Published in: PHP
It uses a variable with a RecordSet. db_query PHP Functions can be used to have the REcordSet(http://snipplr.com/view/59419/php-connexion-to-mysql-ddbb-sql-query-and-creation-of-a-record-set/).
Then fill the tables with the data of the RecordSet.
Then fill the tables with the data of the RecordSet.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<table id="tabla"> <thead> <tr> <?php //Crea la cabecera de las tablas. Pone los nombres de los campos en las columnas del thead de la maquetación HTML. } ?> </tr> </thead> <tbody> <?php if (mysql_num_rows($RecordSet)==0){ //Si la bbdd de no tiene campos, muestra un mensaje indicandolo. echo "<tr>"; echo "</tr>"; } else{ while($row=mysql_fetch_array($RecordSet,MYSQL_ASSOC)){ //Se asigna a la array $row los valores de la funcion mysql_fetch_array (asociativa) que recorre las registros de la tabla, del primero al ultimo. echo "<tr>"; //Se abren filas echo "<td>".$row[mysql_field_name($RecordSet,$k)]."</td>"; //Se usa el nombre del campo como indice del array $row y se recorren todos los registros. } echo "</tr>"; //Se cierran filas } } ?> </tbody> </table>