0
在我的代碼中,我想包含while循環以從數據庫獲取信息&以表格形式將其發送給用戶。 我試圖搜索大量的文章,但實際上沒有解決方案爲我工作。 這裏是我的代碼:與此是未來使用while循環獲取Swift郵件中的詳細信息
$message->setBody('
<html>
<body>
<table style="margin-top:10px; width: 680px; border:0px;">
<tr>
<th width="80%">Product Details</th>
<th width="20%">Amount</th>
</tr>'); /* This is Line 43 */
while ($row = mysql_fetch_array($results2)){
$message->setBody .= ('<tr>
<th width="80%">'.$row["product_name"].' - '.
$row["quantity"].' '.$row["type"].'</th>
<th width="20%">₹ '.$row["subtotal"].'</th>
</tr>');
}
$message->setBody .= ('</table>
</body>
</html>',
'text/html');
錯誤:
Parse error: syntax error, unexpected ';' in /home/public_html/example.com/
test.php on line 43
我知道我必須缺少基本的東西,但沒能找到。任何幫助將不勝感激。
編輯
結果從while循環(外電子郵件測試)的罰款來了,所以不能成爲問題。
ERROR IN最後部分
$message->setBody .= ("</table>
</body>
</html>",
'text/html');
錯誤是 「 '意外',」在文件在沒有。62線」。
問題的最後部分,$ MESSAGE-> setBody =( 「