Perhaps this is a very simple question. I downloaded a form-emailer script and installed it on my computer. just for fun, i tried out the script in hopes that i would get my sample message. for some strange reason i do not get the message and i have no idea why.
I also read up on the mail(name, adress, etc) function so i peeked at the source code and it looks all good. i also made sure to chance the variable $email to my email, etc. can someone please tell me what is wrong? i have attached the source code below.
<!---- this is contact.php ---->
<HEAD>
<TITLE>E-Mail Form</TITLE>
</HEAD>
<BODY>
<FORM method="POST" action="do_sendform.php">
<P>Your Name:<br>
<INPUT type="text" name="sender_name" size=30>
</p>
<P>Your E-Mail Address:<br>
<INPUT type="text" name="sender_email" size=30>
</p>
<P>Message:<br>
<textarea name="message" cols=30 rows=5></textarea>
</p>
<INPUT type="submit" value="Send This Form">
</FORM>
</BODY>
<!-----this is result.php _------>
<HEAD>
<TITLE>E-Mail Form</TITLE>
</HEAD>
<BODY>
<FORM method="POST" action="do_sendform.php">
<P>Your Name:<br>
<INPUT type="text" name="sender_name" size=30>
</p>
<P>Your E-Mail Address:<br>
<INPUT type="text" name="sender_email" size=30>
</p>
<P>Message:<br>
<textarea name="message" cols=30 rows=5></textarea>
</p>
<INPUT type="submit" value="Send This Form">
</FORM>
</BODY>