我有从 sql 数据库中检索到的 php 格式的表,记录以表格式显示,我想邮寄从数据库中检索到的记录
这是我的php代码
$productList
$sql =mysql_query("Select * from products where id IN(".implode(",",$where).")")
$productCount=mysql_num_rows($sql);
if ($productCount > 0) {
while($row = mysql_fetch_array($sql)){
$id = $row["id"];
$product_name = $row["item_name"];
$price = $row["price"];
$productList .= '<div class="coupon">
<table width="618" height="201" border="0">
<tr><td colspan="2" rowspan="4" align="left" valign="top">Name '.$product_name.'" </td>
<td> Expires '.$expiry.'</td>
<td width="129" bgcolor="#033B90">Price '.$price.'</td>
</tr>
</table></div>';
有没有办法将产品列表结果发送到邮件地址
<?php echo $dynamicList; ?>