I have a phpmailer that attaches files by looping through an array of files from an file input field. How can i make it so that onl PDF or DOC are allowed. And if something else is attempted, the script stope and gives an error: "File type not supported. Only PDF or DOC."
Any suggestions? Heres my current script;
foreach(array_keys($_FILES['files']['name']) as $key) {
$source = $_FILES['files']['tmp_name'][$key];
$filename = $_FILES['files']['name']开发者_C百科[$key];
$mail->AddAttachment($source, $filename);
}
You need to look at $_FILES['files']['type'] and make sure it matches the mime types you want.
foreach ($_FILES as $file) {
if ($file['files']['type'] == 'application/msword'
|| $file['files']['type'] == 'application/pdf'
) {
$source = $file['files']['tmp_name'][$key];
$filename = $file['files']['name'][$key];
$mail->AddAttachment($source, $filename);
}
else {
die("You may only upload PDF and Microsoft Word documents through this form.");
}
}
精彩评论