方法一. 注重這裡有一個預先定義的圖片記錄集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>