| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Mar 2005
Posts: 127
![]() ![]() | 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 |
| |
| | #2 (permalink) |
| Senior Member Join Date: Jul 2005 Location: England
Posts: 4,570
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | There are plenty of sites on google that will teach you. Or if you have fantastico install phpform gen
__________________ If you always do what you've always done, you'll always have what you've always had. |
| |
| | #3 (permalink) |
| NamePros Regular Join Date: Nov 2005 Location: Moscow
Posts: 220
![]() | 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 ????: NamePros.com http://www.namepros.com/programming/149806-form-process-software.html 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 06:36 PM |
| Zango Messenger | JoshHendo | Warnings & Alerts | 8 | 08-05-2005 02:58 AM |
| PAYPAL Litigation | johnn | Domain Name Discussion | 6 | 07-31-2004 10:51 PM |
| Paypal Settlement | Lord | The Break Room | 2 | 07-30-2004 10:30 PM |