How to make a contact form?

Discussion in 'HTML & Website Design' started by jimsmith, Aug 26, 2006.

  1. adolix

    adolix Peon

    Messages:
    787
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #21
    If you want a safer solution, my suggestion is this contact form generator service. Your email address will not be displayed anywhere, and you can use their anti-spam mechanism to avoid automated messages. And yes, their service is free.
     
    adolix, Nov 12, 2009 IP
  2. Pilgrim_monkey

    Pilgrim_monkey Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #22
     
    Pilgrim_monkey, Mar 7, 2010 IP
  3. ppce

    ppce Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #23
    go to bestcontactform.com. Super easy and fast. Their forms track keywords, too.
     
    ppce, Apr 6, 2012 IP
  4. pinus

    pinus Banned

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #24
    +1.well said

    :)
     
    pinus, Apr 7, 2012 IP
  5. web.seowrkshop

    web.seowrkshop Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #25
    contact form is not difficult to do. from any site you can take its contact us page html if you know how to take html from any website page. i am sending you the very simple html contact us form which you can use on your work.

    <form name=contact action=contact.php method=post>
    <div align="center">
    <table>
    <tr>
    <td align=right>Name:</td>
    <td width="15">&nbsp;</td>
    <td><input size=45 maxlength=45 type=text name=name
    style="font-family: Courier New; font-size: 10pt"></td></tr>
    <tr>
    <td align=right>Email Address:</td>
    <td>&nbsp;</td>
    <td><input size=45 maxlength=45 type=text name=from
    style="font-family: Courier New; font-size: 10pt"></td></tr>


    <td valign=top align=right>Message:</td>
    <td>&nbsp;</td>
    <td><textarea name=body rows=12 cols=60
    style="font-family: Courier New; font-size: 10pt"></textarea></td></tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td><input type=submit value=" Submit " name=submitcontact style="font-size: 10pt; font-family: Tahoma"></td></tr>
    </table>
    </div>
    </form>
     
    web.seowrkshop, Apr 27, 2012 IP
  6. MobileInternet

    MobileInternet Active Member

    Messages:
    365
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    58
    #26
    hey, i would save yourself the hassle, go to 123contactform or if using word press, install the contact form 7 plugin. easy
     
    MobileInternet, Apr 27, 2012 IP
  7. Isak Hejnesen

    Isak Hejnesen Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #27
    Isnt there any way to create a working form without php, and just HTML5 ?
     
    Isak Hejnesen, Mar 9, 2013 IP
  8. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #28
    What are you going to do with the data? How will you save it? Use it? You will need some sort of server-side scripting language.
     
    kk5st, Mar 10, 2013 IP
  9. Isak Hejnesen

    Isak Hejnesen Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #29
    yes i know now :)
     
    Isak Hejnesen, Mar 11, 2013 IP
  10. noyon

    noyon Member

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #30
    Thanks for post, this really help full.
     
    noyon, Mar 11, 2013 IP
  11. Isak Hejnesen

    Isak Hejnesen Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #31
    Your Welcome :)
     
    Isak Hejnesen, Mar 12, 2013 IP
  12. markjayswal

    markjayswal Greenhorn

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #32
    so easy,

    %%in html%%
    ----------------

    <form action="contact.php" method="post">
    Your name
    <input type="text" name="cf_name">
    Your e-mail
    <input type="text" name="cf_email">
    Message
    <textarea name="cf_message">
    <input type="submit" value="Send">
    <input type="reset" value="Clear">
    </form>
     
    markjayswal, Mar 12, 2013 IP
  13. noyon

    noyon Member

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #33
    Thanks for shearing. best of luck.
     
    noyon, Mar 14, 2013 IP
  14. Chris Silvey

    Chris Silvey Greenhorn

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #34
    I would use a Captcha Service along with your contact form. It can really help cut down email spam.
     
    Chris Silvey, Mar 15, 2013 IP