程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 橫向重復區域顯示二法

橫向重復區域顯示二法

編輯:關於PHP編程

方法一. 注重這裡有一個預先定義的圖片記錄集rsmpic 要橫向重復的就是圖片,請根據你的情況改為你的記錄集名稱.整潔地將橫向重復內容放在一個表格內


<table width="100" border="0" align="center" cellpadding="5" cellspacing="5">

<?php $startrw = '0';// 開始定義橫向重復內容 這裡設定為 3 行 3 列
$endrw = $HLooper1__index;
$numberColumns = '3';
$numrows = '3';
while(($numrows <> 0) AND (!$rsmpic->EOF))
{
$startrw = $endrw 1;
$endrw = $endrw $numberColumns;?>

<tr>
<?php While (($startrw <= $endrw) AND (!$rsmpic->EOF)) { //開始重復內容?>

<td>
<table width="78%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../<?php echo $rsmpic->Fields('M_Path'); ?>" border="0"></td>
</tr>
</table>

</td>

<?php
$startrw = $startrw 1;
$rsmpic->MoveNext();}//以上重復td內容 ?>

</tr>

<?php $numrows=$numrows-1;
Wend; } //重復內容結束 ?>
</table>


方法二. 將重復標記拖到<td>外(縱向重復是在<tr>外),加入一個變量, 每重復 1 次加 1, 假如%3等於0 echo 一個"<tr>" . 請仔細看




<table width="100%" border="1" cellspacing="1" cellpadding="5">
<tr>
<?php $str=0;// 開始定義重復函數?>
<?php do { //開始重復?>

<td>
<?php $str ;?>
<?php echo $str; ?>.<?php echo $row_Recordset1['NAME']; ?>
</td>
<?php if ($str%3==0)echo "<tr>"; ?>

<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); // 重復td內容?>
</tr>

</table>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved