PHP编写一个函数,可以接收一个表名,然后打印表的表头和记录在网页
列:".$cols;
//打印表头
echo "";
for($i=0; $i<$cols; $i++){
//取字段
$mysql_name = mysql_field_name($res,$i);
echo "".$mysql_name." ";
}
echo " ";
while ($row = mysql_fetch_row($res)){
echo "";
for($i=0; $i<$cols; $i++){
echo "$row[$i] ";
}
echo " ";
}
echo "
";
// while($field_info = mysql_fetch_field($res)){
// echo "
".$field_info->name;
// /*打印结果:
// *
// id
// name
// password
// email
// age*/
// }
//var_dump($field_info);
}
show_table_info("user1");
网页标题:PHP编写一个函数,可以接收一个表名,然后打印表的表头和记录在网页
文章分享:http://scyanting.com/article/gjjhhg.html