gpt4 book ai didi

php - while 循环和 php-mailer

转载 作者:太空宇宙 更新时间:2023-11-03 10:44:46 26 4
gpt4 key购买 nike

<分区>

我使用 phpmailer 在操作完成后发送电子邮件。现在这是我的 phpmailer 代码的最后一部分

$mail->Subject = 'Nuovo Ordine';
$mail->Body = $ordine_iniz.$ordine_cent.$ordine_fine;
$mail->AltBody = '';

这是我想插入正文的变量

$ordine_iniz='
Nuovo Ordine Spiaggia dal Sig./Sig.ra '.$nome.' '.$cognome.'<br />
<table style="text-align:center;" cellpadding="5">
<thead style="background-color:#EBE9E9">
<tr>
<th scope="col">#</th>
<th scope="col">Prodotto</th>
<th scope="col">Quantit&agrave;</th>
</tr>
</thead>
<tbody style="background-color:F5FFFF">';


$ordine_fine='</tbody></table>';

$i=0;
$query = "SELECT * FROM table";
$result=mysql_query($query);
while($row=mysql_fetch_array($result)){
$ordine_cent='<tr><td>'.$i.'</td><td>'.$row["prodotto"].'</td
<td>'.$row["quantita"].'</td></tr>';
$i++;}

现在的问题是邮件发送有效,但邮件中的表格只给我一行,其中包含表格“表格”的最后结果。我想要所有行

我该如何解决?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com