[php]代码库
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>商品显示页面</title>
<!--设置表格格式-->
<style type="text/css">
table,th,td{ border:#000 solid lpx;}
table {
width:980px;
margin:auto;
font-size:14px;
}
caption{
font-size:24px;
font-weight:bold;
}
</style>
</head>
<body>
<?php
//连接数据库
require "public/dbcn.php"; //引入设计好的数据库连接
$dbcn->exec('set names utf8'); //设置数据库的存储编码为utf8
$sql="select*from products"; //构造查询语句
$rs=$dbcn->query($sql); //执行sql查询语句获取联合数组结果集
?>
<table align="center">
<caption>产品列表</caption>
<tr>
<th>编号</th><th>商品名称</th><th>商品规格</th><th>价格</th><th>库存量</th><th>图片</th><th>网址</th>
</tr>
<?php
//通过循环取出每一条记录填入每行中
while($rows=$rs->fetch(PDO::FETCH_ASSOC)){
echo'<tr>';
echo'<td>'.$rows['proID'].'</td>';
echo'<td>'.$rows['proname'].'</td>';
echo'<td>'.$rows['proguide'].'</td>';
echo'<td>'.$rows['proprice'].'</td>'; echo'<td>'.$rows['proamount'].'</td>';
echo'<td>'.$rows['proimages'].'</td>';
echo'<td>'.$rows['proweb'].'</td>';
echo'</tr>';
}//执行
?>
</table>
</body>
</html>