I have a contact form yeh, people can type in their name and e-mail address and a little message…
I need a contact form where people can upload an image or a file that they can send me in the message…
Like the one on
http://www.yousendit.com/
I have a contact form already which ‘posts’ to ‘mail2.php; I think it may be a simple case of editing it…perhaps
Let me know a cost… I need it done quick, I have another person working on it for ‘’£4’’ can you get it done before him for ‘’£4.50’’ +
Here is the html code..
<form action="mail2.php" method="post">
<font color="#000000">Name: </font> <input type="text" name="name"><font color="#000000"><br/>
Email Address: </font> <input type="text" name="email"><font color="#000000"><br/>
Message:</font><br/>
<textarea name="message" cols="30" rows="5"></textarea><br/>
<input type="submit" value="send"><br/>
</form>
PHP file ‘mial2.php’ below:
<?php
//variables (change these)
$youremail = "rhys.gregory@ntlworld.com";
// your email address
$subject = "Message From st.uk:";
// the subject of the email
$thankyou = "confirmation2.html";
// thank you page
// don't change anything else
if($email == ""){
?>
No email address added. Please go back.<br/>
<?php
}elseif($name == ""){
?>
No name added. Please go back.<br/>
<?php
}elseif($message == ""){
?>
No message added. Please go back.<br/>
<?php
}else{
$msg = ereg_replace("\\\'", "'", $message);
$msg = ereg_replace('\\\"', "\"", $msg);
$message1 = "from: $name\nemail: $email\nmessage:\n$msg1";
mail($youremail, $subject, $msg, "From: $email\r\nReply-to: $email\r\n");
?>
<meta http-equiv="refresh" content="0; url=<?echo $thankyou;?>"">
<?php
}
?>
So sorry didnt stick to forum rules i was in such a rush.... really sorry, will never happen again. please don't delete