打印$ html時出現此錯誤Parse error: syntax error, unexpected '}'
。解析錯誤:語法錯誤,在php中出現意外'}'
這是我的代碼:
$html= while($rowe=$rese->fetch_array())
{ ;
$html .='<div class="row" style="margin-bottom:0;">
<div class="col-md-12 form-group">
<label style="font-weight:bold">Summary</label>
<p>';
$html .=ucfirst($rowe['summary']);
$html .='</p>
</div>
</div><hr>';
$html .= } ;
'$ HTML =};'沒有爲你關閉'while'語句塊,而試圖將一些東西附加到字符串 – DonCallisto
@DonCallisto那麼如何關閉while循環 – user3770112
@ user3770112任何意義:無附加任何東西到'html'; ''''''''''''''''''''後面''''''''''''' – DonCallisto