Results 1 to 2 of 2

Thread: Problem with PHP/Flash e-mailer

  1. #1
    Lieutenant aggieSlaughter's Avatar
    Join Date
    Feb 2003
    Location
    San Diego, CA
    Posts
    232

    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
    Word up apexers. :-D

  2. #2
    Lieutenant aggieSlaughter's Avatar
    Join Date
    Feb 2003
    Location
    San Diego, CA
    Posts
    232
    anyone??

    Word up apexers. :-D

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •