我是法国人,所以请原谅我的口音。;-) 我正在研究一个 PHP 脚本(基于 AJAX 购物车)已经好几个星期了,但我找不到我的问题的正确答案。我解释一下:我有一个拖放篮,可以从图片库中选择图片。当用户设置他的电子邮件并单击一个按钮时,他会通过电子邮件收到他选择的图片。
这是我的问题:如果篮子里有 3 张图片,他会通过电子邮件收到 3 封电子邮件和 1 张图片。如果有 12 589 张图片... 12 589 电子邮件!
我希望有人可以帮助我或解释我为什么错了。
这是我的(部分)代码:
<?php
//////////////////////////////////////
// From Drag and Drop
//////////////////////////////////////
$cnt = array();
$products = array();
foreach($_POST as $key=>$value)
{
$key=(int)str_replace('_cnt','',$key);
$products[]=$key;
$cnt[$key]=$value;
}
$result = mysql_query("SELECT * FROM internet_shop WHERE id IN(".join($products,',').")");
if(!mysql_num_rows($result))
{
echo '<h2>Votre sélection est vide. Mais comment êtes vous arrivé(e) ici ? </h2><a href="contact.php">contactez-nous</a>';
}
else
{
echo '<h2>Votre sélection vous a été expédié à <span style="color:#4FACC1;">'.$_POST ['email'].'</span>.</h2>
<br/>
<h2 style="color:#4FACC1;">Détails de votre sélection</h2>
';
while($row=mysql_fetch_array($result))
{
//////////////////////////////////////
// Display selection
//////////////////////////////////////
echo '';
echo ' <span style="float:left;margin:10px;text-align: center;">
<img src="'.$row['chemin'].'/'.$row['img'].'"
alt="'.htmlspecialchars($row['name']).'"
width="128" height="128"
class="pngfix" />
<br/>
'.$row['name'].'
<b style="color:#4FACC1;font-size:9px;"> ('.$row['price'].' Ko)</b>
</span>';
$total += $cnt[$row['id']] * $row['price'];
//////////////////////////////////////
// Variable
//////////////////////////////////////
$sujet_reportage = str_replace('/', ' : ', $row['chemin']);
$sujet_reportage = str_replace('_', ' ', $sujet_reportage);
$withpoutthunb = str_replace('thumb_', '', $row['img']);
$Photos = $row['chemin'].'/'.$withpoutthunb;
$selection = 'Votre sélection photo : '.$withpoutthunb;
$to = $_POST ['email'];
$from = "www.xxxxx.com";
$subject = $selection;
$message = $sujet_reportage;
$headers = "From: $from";
//////////////////////////////////////
// array with filenames to be sent as attachment
//////////////////////////////////////
$files = array($Photos);
//////////////////////////////////////
// Frontière
//////////////////////////////////////
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
//////////////////////////////////////
// headers for attachment
//////////////////////////////////////
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\"";
//////////////////////////////////////
// multipart boundary
//////////////////////////////////////
$message = "This is a multi-part message in MIME format.\n\n" . "--{$mime_boundary}\n" . "Content-Type: text/plain; charset=\"iso-8859-1\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $message . "\n\n";
$message .= "--{$mime_boundary}\n";
//////////////////////////////////////
// preparing attachments
//////////////////////////////////////
for($x=0;$x<count($files);$x++){
$file = fopen($files[$x],"rb");
$data = fread($file,filesize($files[$x]));
fclose($file);
$data = chunk_split(base64_encode($data));
$message .= "Content-Type: {\"application/octet-stream\"};\n" . " name=\"$files[$x]\"\n" .
"Content-Disposition: attachment;\n" . " filename=\"$files[$x]\"\n" .
"Content-Transfer-Encoding: base64\n\n" . $data . "\n\n";
if($x == (count($files)-1))
{
$message .= "–{$mime_boundary}–";
}
else
{
$message .= "–{$mime_boundary}\n";
}
}
//////////////////////////////////////
// send
//////////////////////////////////////
$ok = @mail($to, $subject, $message, $headers);
//////////////////////////////////////
// End of while
//////////////////////////////////////
}
非常感谢。