Log in

View Full Version : Submit button action



sclassen
08-12-2009, 12:54 AM
How do you get the submit button to actually send? I did what on web site told me and put in my own email address to make sure it would work. It doesn't. Basically this is what I have:

<form name="prayerrequests" action="ihavemyemailhere@hotmail.com" method="POST">
<div align="center">
<br><br>
<input type="text" size="25" value="Enter your request here.">
<br><input type="submit" value="Submit"><br>
</div>
</form>

What am I missing?

magicyte
08-12-2009, 01:18 AM
What you have there wouldn't send an email... Probably the only way you could send an email while online is with PHP's mail function. Check it out here:

http://www.php.net/manual/en/function.mail.php

Hehe, I'm not a wiz at PHP or anything, so sorry if that didn't help too much..