Order Form Submit Button

admin

Administrator
Staff member
I need to know how to make a submit button (using Dreamweaver MX) that will send the order form i created to an e-mail address. <br />
<br />
Can anybody help me? :help:<!--content-->try this<br />
<br />
<form action="[email protected]" method="post"><br />
<br />
You dont need a specific Email Button. However you should have this information processed via PHP then sent to your email.<!--content-->I'm sorry but what does PHP stand for? <br />
<br />
I'm new to this web-site development :confused:<!--content-->PHP is a serverside language. Using mailto: in a form is not a safe way at all, as it requires the user to use outlook express or any similiar email program. And if any email is sent, it is sent in a very cryptic form. So that's why it's much better to use a serverside language to process the email. Another solution is to use a remotely hosted service. They work, but mostly show your users a bunch of advertisements. Have a look here: <!-- m --><a class="postlink" href="http://cgi.resourceindex.com/Remotely_Hosted/Form_Processing/">http://cgi.resourceindex.com/Remotely_H ... rocessing/</a><!-- m --><!--content-->
 
Back
Top