while(fetching){
if($x != $y){
echo "<div> Something </div>
<div>";
}
$x = $y;
echo "<div> Something Else </div>";
if($x != $y) {echo "</div>";} //The Problem Here
}
在我這裏代碼內的元件,我無法關閉我的元件在所有的,在所有的末端之上的元素組合在彼此內部和所述元件在所有的結束時關閉它,我該如何解決這個問題?我試圖去結束while循環
if($x != $y){
echo "<div> Something </div>
<div>}
$x = $y;
echo "<div> Something Else </div>";
}
if($x != $y) {</div>";}
但也沒有工作。
我想要做到的是
<div> Something </div>
<div>
<div> Something Else </div>
<div> Something Else </div>
</div>
<div> Something </div>
<div>
<div> Something Else </div>
<div> Something Else </div>
</div>
什麼總是會發生的是
<div> Something </div>
<div>
<div> Something Else </div>
<div> Something Else </div>
<div> Something </div>
<div>
<div> Something Else </div>
<div> Something Else </div>
</div>
</div>
請解釋你正在努力完成的事情。 – FirstOne
@FirstOne現在編輯了這個問題。 –
'$ x = $ y;'然後,'if($ x!= $ y)'後面2行,這個'if'永遠不會執行。 –