程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 數據庫查詢記錄php 多行多列顯示

數據庫查詢記錄php 多行多列顯示

編輯: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=gb2312" />
<title>數據庫查詢記錄多行多列顯示</title>
</head>
<?php
require_once 'include/config.php';
$result=mysql_query("select * from guestbook");
$i=5;
$j=0;
?>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<?php
while($row=mysql_fetch_array($result))
{
$j++;
?>
<td><?=$row["username"]?></td>
<?php
if($j==$i)
{
$j=0;
echo "</tr>";
echo "<tr>";
}
}
for($k=$i-$j;$k>0;$k--)
{
echo "<td></td>";
}
?>
</tr>
</table>
</body>
</html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved