Page is a not externally linkable
- Code, Content, and Presentation
-- PHP Server Side Scripting
---- [?] Whats wrong with this php form :'(


r4bet - 5:16 pm on Oct 3, 2009 (gmt 0)


this is my contact form. but when i click send an ERROR happen :(

index.php source:

<form action="mail.php" method="post">
name <input type="text" name="name" size="40">
family <input type="text" name="family" size="40">
phone <input type="text" name="phone" size="40">
address <input type="text" name="address" size="40">
<input type="submit" value="send">
</form>

mail.php source:

<?php
$to="info@example.tld";
$subject="feedback";
$from="visitor@example.tld";
$name=$_POST['name'];
$family=$_POST['family'];
$phone=$_POST['phone'];
$address=$_POST['address'];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= 'To: '.$to . "\r\n";
$headers .= 'From: '.$from . "\r\n";
$headers .= 'Reply-To: '.$from . "\r\n";
$sendmail=mail($to, $subject, $name, $family, $phone, $address, $headers);
if ($sendmail)
echo "sent";
else
echo "failed";
?>

please correct it and place here. thank you very much


Thread source:: http://www.webmasterworld.com/php/4000481.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com