简体   繁体   English

HTML PHP表单文件上传-在提交时显示文件名并将文件发送到电子邮件

[英]HTML PHP form file upload - display file name on submit and send file to email

I have an html form I have a file upload button - it works the file is uploaded to an upload folder. 我有一个html表单,我有一个文件上传按钮-它可以将文件上传到上传文件夹。 I need to 我需要

  • have the uploaded file name display on submit. 在提交时显示上载的文件名。 It should be added to this block: 应该将其添加到此块中:

     <?php if(isset($emailSent) && $emailSent == true) { //If email is sent ?> <div id="sadhu"> <p class="general_site">First Name:<strong><?php echo $firstname;?></strong></p> <p class="general_site">Last Name:<strong><?php echo $lastname;?></strong></p> <p class="general_site">Email:<strong><?php echo $email;?></strong></p> <p class="general_site">Theme:<strong><?php echo $theme;?></strong></p> <p class="general_site">Type:<strong><?php echo $type;?></strong></p> <p class="general_site">Upload:<strong><?php print_r($_FILES['datafile']);?></strong></p> </div> <?php } ?> 

At the moment print_r shows the file but in a messy array I need to clean it up... 目前,print_r显示了该文件,但在混乱的数组中,我需要对其进行清理...

  • Once this form is submitted the email that comes though does not have the attached file. 提交此表单后,随附的电子邮件便没有附件。 In the part that sends the email all I have is this: 在发送电子邮件的部分中,我所拥有的是:

     //If there is no error, send the email if(!isset($hasError)) { $emailTo = 'info@bgv.co.za'; //Put your own email address here $body = "First Name: $firstname \\n\\nLast Name: $lastname \\n\\nEmail: $email \\n\\nTheme: $theme \\n\\nType of Abstract: $type \\n\\nUpload: $datafile \\n\\n"; $headers = 'From: My Site <'.$emailTo.'>' . "\\r\\n" . 'Reply-To: ' . $email; mail($emailTo, $subject, $body, $headers); $emailSent = true; } 

for your first question use $_FILES['datafile']['name'] 对于第一个问题,请使用$_FILES['datafile']['name']

for the second one, attaching files to an email is a bit more tricky. 对于第二个文件,将文件附加到电子邮件会有些棘手。 have a look at this tutorial , it helped me a lot when i was starting out 看一下这个教程 ,当我刚开始的时候它对我有很大帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM