I am getting this error Parse error: syntax error, unexpected '}'
when printing $html.
This is my code:
$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 .= } ;