Jump to content

Search the Community

Showing results for tags 'email confirmation'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 2 results

  1. Hello all names Beta4, I do apologize in advance if I am posting this in the wrong area. Im still kinda a newbie Anyhow, I want to allow the user to post data such as user name, email, and description on a generic post, this is for a project not commercial use. I want it to display a confimation with the users name, email and description on what he or she posted. Then I want an email sent to their email with the same information that displays the confirmation after they hit the submit button. This is the code I have. Thanks again all! post.php is the name of the file I have given it. <html> <head> <title>Post</title> </head> <body> <h2>Post</h2> <?php $user = $_POST['user']; $email = $_POST['email']; $description = $_POST['description']; $to = $_POST['email']; $subject = 'Confirmation on your recent post at the Trading Post'; $msg = "Your name is $user and your email is $email\n" . "Your post reads: $description\n"; $header = "From: admin@mothinrelay.com"; mail($to, $subject, $msg, $header); echo 'Your post has been submitted.<br />'; echo 'Your user name is ' . $user . '<br />'; echo 'Your email is ' . $email . '<br />'; echo 'You post reads: ' . $description . '<br />'; ?> </body> </html>
  2. Hey everyone, This is probably something really simple, but i cant seem to figure out how to do this, i want to create a form that once the person has filled out their info (email, name, age, bio...etc) it will send them an email confirmation with a time stamp of when they entered the info. My question is, how the heck do i get php to take the email address they have submitted and send a confirmation to that email address? Im assuming i need to create a variable for the <input> for the email text area? im not so sure though... thank you
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.