这篇文章主要为大家详细介绍了php商品显示简单示例,具有一定的参考价值,可以用来参考一下。
对php商品显示简单示例感兴趣的小伙伴,下面一起跟随四海网的小编巴闭妹来看看吧!
/**
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<!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>
//连接数据库
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>
//通过循环取出每一条记录填入每行中
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>
本文来自:http://www.q1010.com/173/10942-0.html
注:关于php商品显示简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。