php+mysqli实现将数据库中一张表信息打印到表格里的方法
本文实例讲述了php+mysqli实现将数据库中一张表信息(包括表头)打印到表格里的方法。分享给大家供大家参考。具体如下:
这段代码将就看吧。需要学习基础知识。代码如下:
<?php
$mysqli=newMySQLi("localhost","root","123456","liuyan");
if(!$mysqli){
die($mysqli->error);
}
functionshowTable($mysqli,$table_name){
$sql="select*from$table_name";
$res=$mysqli->query($sql);
//获取返回总行数和列数
echo"共有:".$res->num_rows."行;共有:".$res->field_count."列。";
//获取表头---从$res取出
echo"<tableborder=1><tr>";
while($field=$res->fetch_field()){
echo"<th>{$field->name}</th>";
}
echo"</tr>";
//循环取出数据
while($row=$res->fetch_row()){
echo"<tr>";
foreach($rowas$value){
echo"<td>$value</td>";
}
echo"</tr>";
}
echo"</table>";
$res->free();
}
showTable($mysqli,"news");
?>
希望本文所述对大家的php程序设计有所帮助。