[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 12-20-2005, 11:58 AM   #1 (permalink)
NamePros Member
 
Join Date: Mar 2005
Posts: 127
90.00 NP$ (Donate)

dom35 is on a distinguished road


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
dom35 is offline  
Old 12-20-2005, 01:02 PM   #2 (permalink)
Senior Member
 
Morph's Avatar
 
Join Date: Jul 2005
Location: England
Posts: 4,590
11.29 NP$ (Donate)

Morph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond reputeMorph has a reputation beyond repute

Third World Education Animal Cruelty Multiple Sclerosis Child Abuse Find Marrow Donors! Cystic Fibrosis Save a Life Cancer Ethan Allen Fund
There are plenty of sites on google that will teach you.

Or if you have fantastico install phpform gen
__________________
Product for SELL
Product for SALE
Morph is online now  
Old 12-20-2005, 01:23 PM   #3 (permalink)
NamePros Regular
 
Join Date: Nov 2005
Location: Moscow
Posts: 220
424.75 NP$ (Donate)

xtremest is an unknown quantity at this point


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>
and php code
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";
        }
}
?>
Do not forget to rename your .html to .php.
Hope it helps.
__________________
cari.es, phon.es, offic.es for sale.
xtremest is offline  
Old 12-20-2005, 03:25 PM   #4 (permalink)
NamePros Member
 
Join Date: Mar 2005
Posts: 127
90.00 NP$ (Donate)

dom35 is on a distinguished road


I do have Fantastico, I will give it a try, together with the code posted. Thanl you very much to both two.

Dom
dom35 is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


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

Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 08:05 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85