不使用ADODB php库代码以数字方式填充表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不使用ADODB 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.
<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>
以上是关于不使用ADODB php库代码以数字方式填充表的主要内容,如果未能解决你的问题,请参考以下文章
PHP 在没有使用ADODB php库代码的情况下,表填充了dinamically