NameSilo

Form Process. Software

NamecheapNamecheap
Watch

dom35

Established Member
Impact
3
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
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
Unstoppable Domains โ€” AI StorefrontUnstoppable Domains โ€” AI Storefront
There are plenty of sites on google that will teach you.

Or if you have fantastico install phpform gen
 
0
•••
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("[email protected]","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.
 
0
•••
I do have Fantastico, I will give it a try, together with the code posted. Thanl you very much to both two.

Dom
 
0
•••
CatchedCatched
Escrow.com
Spaceship
Rexus Domain
CryptoExchange.com
Domain Recover
CatchDoms
DomDB
NameFit
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back