当用户选择复选框 1 时,我有一个带有 2 个复选框的表单(page2),第 3 页上的脚本会将指令 1 发送到电子邮件地址。选择CHKBOX 2时,它会发送指令2。
这是有效的,但是当只检查 1 个 chkbox 时,我也会收到类似文件名不能为空的错误。
这是第 2 页的代码
<form name="form" method="POST" action="instructies_verzenden2.php">
<p></p>
<input type="checkbox" name="i_allinonewebsolution" value="file_1.txt"><span class="info-image information">All-in-One Websolution</span>
<input type="checkbox" name="i_custommade" value="file_2.txt"><span class="info-image information">Custom Made</span>
<input type="hidden" name="keyfield" value="<?php echo $domeinnaam?>"><input type="hidden" name="emailadres" value="<?php echo $data2[emailadres]?>"><input type="submit" class="sub-small sub-opslaan green" value="Update gegevens">
<p></p>
</form>
这是第 3 页的代码
// array with filenames to be sent as attachment
$i_allinonewebsolution=$_POST['i_allinonewebsolution'];
$i_custommade=$_POST['i_custommade'];
$files = array("$i_allinonewebsolution","$i_custommade");
// 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";
$message .= "--{$mime_boundary}\n";
}
我认为问题出在这里:
// array with filenames to be sent as attachment
$i_allinonewebsolution=$_POST['i_allinonewebsolution'];
$i_custommade=$_POST['i_custommade'];
$files = array("$i_allinonewebsolution","$i_custommade");
我曾尝试使用 implode 和 array_filter 但我猜我做错了。谢谢你的帮助。
更新
我已将表单页面添加到 jsfiddle。第一个jsfiddle中有3个页面链接