-
Problem with PHP/Flash e-mailer
I'm having a problem with the following site.
www.texasgymrats.com/contact
below is my PHP code
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
email.php
<?php
$name=$_POST['name'];
$email=$_POST['email'];
$subject='Message from TexasGymRats.com';
$message=$_POST['message'];
$name=trim($name);
$email=trim($email);
$to='**DESIRED E_MAIL ADDRESS**';
//YES, this line is corrected in my code.
mail($to, $subject, $message, "From: $name <$email>");
$name='';
$email='';
$subject='';
$message='';
echo "response=passed";
exit;
/?>
I can paste my action scripting for flash if you guys see nothin wrong with the PHP.
Thanks,
AggieSlaughter
-
anyone??
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
Bookmarks