Help With PHP Email Form - Attaching Files?

Alexey

New member
Hello
being a newbie in php programming field I would like to ask for assistance with e-mail form and attaching files. I have bought a template for website with included mailer form. The only problem with it is that it only allows to attach jpg files and i need word documents, pdf, and exel files as well as images to be attached and mailed.
Below is the script line from the form. Can someone please advise on how can i modify it in order to have word, exel, pdf and image files arrive to my email. Thank you

<? if($_POST) {
include('form_config.php');
if(eregi('.jpg',$_FILES[image][name])) {
$unid = uniqid();
move_uploaded_file($_FILES[image][tmp_name],'offer_uploads/'.$unid.'.jpg');
$urla = "http://www.globalmeattraders.com/offer_uploads/$unid.jpg";
 
Back
Top