我正在創建一系列內容塊。 (共4個)。每組內容php +1 +1
如果你可以讓PHP爲你創建它,那麼創建它們都是愚蠢的。 因此,我創建了第一個,寫了一個for循環,只要添加的內容,因爲它沒有爲4
這裏一個最大數量是:
<table>
<tr>
<?php
$counter =0;
for ($i=0; $i <= 3; $i++){
$counter++;
?>
<td>some content to repeat with id='$id++' and '$id++'</td>
<?php
if ($counter == 2){
echo '</tr><tr>';
$counter=0;
}
}
?>
</tr>
</table>
這樣做是重複<td>
兩次,然後結束規則並開始新規則。做到這一點,直到你達到4(3因爲1 = 0)
我的問題是,一些內容包含編號的
編號也應該編號,但只有當整個循環重複。
所以$i++
都應該具有相同的值,如果循環運行一次
因此,這將意味着,如果有兩個ID在第一次運行時,他們都應該有ID 1
和下一個重複應該有ID 2
我不知道如何做到這一點。
輸出應該是:
<table>
<tr>
<td>
This content has id 1
And this content has id 1 to
<td>
<td>
This content has id 2
And this content has id 2 to
<td>
</tr>
<tr>
<td>
This content has id 3
And this content has id 3 to
<td>
<td>
This content has id 4
And this content has id 4 to
<td>
</tr>
</table>
M.
'echo「
@JohnnyMopp我認爲您誤會了。我已經更新了這個問題。 – Interactive