| |||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #1 (permalink) |
| NamePros Member | Form Process. Software I am preparing a simple site for a small but mid-upscale hotel (10 rooms). I already did the forms (Dreamweaver) for customers to ask for a reservation, but I do not know how to process later. I would like to receive amail telling me that someone is asking for info/reservation and answer quickly. May be there is something only for hotels. I have also many other websites that I would like to develop, including the use of forms. Can you please suggest me what software package it is good to proccess html forms ?. I found email processor pro,how good it is ?, what it is the best ?. I do not want to spend long time just trying to lern how to coding, I prefer to spending using a good program. Many thanks |
| |
| | #3 (permalink) |
| NamePros Regular | The simplest solution is to put any CMS on your site. It will automatically send mail when the form will filled. or just write in your page simplest php code form for example: Code: <form name="form1" method="post" action="/index.php">
<p>Your name: <input type="text" name="fromname" value="<?=@HtmlSpecialChars($fromname)?>">
</p>
<p>Your email:
<input type="text" name="from" value="<?=@HtmlSpecialChars($from)?>">
</p>
<p>Question:
<textarea name="body" cols=50 rows=4><?=@HtmlSpecialChars($body)?></textarea></p>
<p> <input type="submit" name="doSend" value="Send!"> </p>
</form>
Code: <?
if(@$doSend) {
if(mail("your@mail.info","Insert subject","$fromname - $from,\n\n$body\n\nAny other variables from your form","From:
\"$fromname\" <$from>")) {
echo "OK<br>\n";
} else {
echo "Error.<br>\n";
}
}
?>
Hope it helps.
__________________ cari.es, phon.es, offic.es for sale. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Your Namepros Nick name .com | faisj | Domain Name Discussion | 75 | 12-27-2005 05:36 PM |
| Zango Messenger | JoshHendo | Warnings & Alerts | 8 | 08-05-2005 01:58 AM |
| PAYPAL Litigation | johnn | Domain Name Discussion | 6 | 07-31-2004 09:51 PM |
| Paypal Settlement | Lord | The Break Room | 2 | 07-30-2004 09:30 PM |