使用ADODB php库代码以数字方式填充表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ADODB php库代码以数字方式填充表相关的知识,希望对你有一定的参考价值。
It uses a variable with a RecordSet from a ADOdb Library (Library must be downloaded). db_query php Functions can be used to have the REcordSet(http://snipplr.com/view/59379/dbquery-php-function-for-ddbb-queries-with-adodb-library/)Then uses ADODB php library functions and properties for fill the tables with the data of the RecordSet.
<table> <thead> <tr> <?php for($k=0; $k<= $RecordSet->FieldCount( ) -1 ; $k++){ $field = $RecordSet->FetchField($k); echo "<th>". $field->name."</th>"; } ?> </tr> </thead> <tbody> <?php while( !$RecordSet->EOF){ echo"<tr>"; for($k=0; $k<= $RecordSet->FieldCount( ) -1 ; $k++){ echo "<td>".$RecordSet->fields[$k]."</td>"; } echo"</tr>"; $RecordSet->MoveNext(); } ?> </tbody> </table>
以上是关于使用ADODB php库代码以数字方式填充表的主要内容,如果未能解决你的问题,请参考以下文章
PHP 在没有使用ADODB php库代码的情况下,表填充了dinamically
dbu query PHP函数,用于使用ADOdb库进行ddbb查询