|
-
Always Confused
i have already done that...but did not work.
flash:
sendData_lv.name = name_txt.text;
sendData_lv.email = email_txt.text;
sendData_lv.how = how_txt.text;
sendData_lv.phone = phone_txt.text;
sendData_lv.feedback = feedback_txt.text;
php:
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$how = $_POST['how'];
$phone = $_POST['phone'];
$feedback = $_POST['feedback'];
$subject = 'Message from Client';
$headers = "From: $name <$email>\n";
$headers .= "Reply-To: $name <$email>\n";
//ENTER YOUR EMAIL ADDRESS HERE
$to = '[email protected]';
//---------------------------
$success = mail($to, $subject, $feedback, $headers);
if($success){
echo '&sent=OK';
}else{
echo '&sent=Error';
}
?>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|