I have seen a few good threads on email results but not exactly what i need.
I have a registration form where the results are dropped into a MySQL table.
But i would also like to have the results emailed to me for tracking purposes.
The high points of the form are:
<form action="formScript.php" method="post" name="userForm">
(... data fields... )
(then submit)
<td width=300 align="center"><input type="submit" name="SubmitUserData" value="I agree" width="40" height="20"></td>
<td><input type="reset" value="Clear form"></td>
Can i insert a a tag at the top of the formScript that will email the values like
$firstName
$lastName
$email
...etc... ?
thanks!
Ralph