Posted by Hoopster on 06/25/06 03:02
Here is my form.
<form action="http://www.johndoe.com/FormToEmail.php" method="post"
enctype="multipart/form-data">
<input class="sidebar" value="name" name="user" >
<input class="sidebar" value="email" name="email" > <TEXTAREA
class=sidebar name=content rows=40 cols=30></TEXTAREA>
<input class="button_sidebar" value="Send" type="submit" >
<input class="button_sidebar" value="Reset" type="reset" >
</form>
I then have a PHP file called FormToEmail.php
It looks like this:
$my_email = "johndoe@aol.com";
And some other garbage at the bottom. For some reason my form goes to
the FormToEmail.php page, but I never get any emails with the data.
Can anyone help me with this.
- John.
[Back to original message]
|