Hello all...I am in a rut, confused.
I have created an html/php web form it works fine, the user enters the info and submits it to a confirmation page and then when the user clicks ok I need for the information to be sent to 2 email address' one it theres and the other is my own. I have read tutorials and I have 2 books, but I am confused. Can any one help me?
This is what I have in the confirmation page for when they click ok so it is sent to the email address...
<form method="POST"
action="confirmed.php">
<input type="hidden" name="mailto"
value="myemail@comp.com">
<h4>Please confirm the following information</h4>
Title: <?php echo $_POST["title"]; ?>
<br>
First Name: <?php echo $_POST["fname"]; ?>
<br>
MI: <?php echo $_POST["mname"]; ?>
<br>
Last Name: <?php echo $_POST["lname"]; ?>
<br>
...etc etc...
Thanks much!!