Table populated dinamically without using ADODB php library code


/ Published in: PHP
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. <table id="tabla">
  2. <thead>
  3. <tr>
  4. <?php //Crea la cabecera de las tablas. Pone los nombres de los campos en las columnas del thead de la maquetación HTML.
  5. for($i=0;$i<mysql_num_fields($RecordSet);$i++){
  6. echo ("<th>".mysql_field_name($RecordSet,$i)."</th>");
  7. }
  8. ?>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <?php
  13. if (mysql_num_rows($RecordSet)==0){ //Si la bbdd de no tiene campos, muestra un mensaje indicandolo.
  14. echo "<tr>";
  15. echo "<td colspan=\"".mysql_num_fields($RecordSet)."\">No hay ningún campo</td>";
  16. echo "</tr>";
  17. }
  18. else{
  19. 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.
  20. echo "<tr>"; //Se abren filas
  21. for ($k=0; $k<mysql_num_fields($RecordSet);$k++){
  22. 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.
  23. }
  24. echo "</tr>"; //Se cierran filas
  25. }
  26. }
  27. ?>
  28. </tbody>
  29. </table>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.