Jump to content

Aloha

New Members
  • Posts

    1
  • Joined

  • Last visited

Aloha's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. My name is Sarah. I am new to php. I found a sample php script I'd like to use which sends user-entered data from an HTML form to another page, which gets processed there with php. But I don't know how to also get the form results emailed to me. Here's what I mean: Here's the HTML Form: <html><body> <h4>Tizag Art Supply Order Form</h4> <form action="process.php" method="post"> <select name="item"> <option>Paint</option> <option>Brushes</option> <option>Erasers</option> </select> Quantity: <input name="quantity" type="text" /> <input type="submit" /> </form> </body></html> Here's the php processing the form: <html><body> <?php $quantity = $_POST['quantity']; $item = $_POST['item']; echo "You ordered ". $quantity . " " . $item . ".<br />"; echo "Thank you for ordering from Tizag Art Supplies!"; ?> </body></html> But I would also like to have the user entered data emailed to me. Can anyone help or show me how to do it? Thank you, Sarah
×
×
  • Create New...