Results 1 to 5 of 5

Thread: Need a contact form

  1. #1
    Junior Member
    Join Date
    Jul 2007
    Posts
    2

    Thumbs up Need a contact form

    Hello,

    I need a contact form on my website, that will send to my email address what the visitor enter in the form fields. The problem is that I can't run any php scripts.. is there a way to use some html form?

  2. #2
    Senior Member WolfeTone's Avatar
    Join Date
    Jun 2007
    Location
    Ireland
    Posts
    197
    Can you run asp scripts?

  3. #3
    Senior Member Aardpsymon's Avatar
    Join Date
    Feb 2007
    Location
    St Annes (aaaa!)
    Posts
    434
    you can set the HTML to just e-mail it to you.

    something like
    <form method="post" action="mailto:recipient@fake.dom" enctype="text/plain">
    <input type=text name=your_comments>
    <input type=submit value="Submit Your Comments">
    </form>
    then you get something like
    a=answer&b=answer2.....
    in your e-mail.

    Its not pretty, not the way I would recommend but if thats the way it has to be....

    I'd see if you can run any other kinds of script such as perl, ASP, heck even VB or something just to tidy it up.
    Last edited by Aardpsymon; July 16th, 2007 at 12:28 PM. Reason: better code sample
    If the world doesn't stop annoying me I will name my kids ";DROP DATABASE;" and get revenge.

  4. #4
    Junior Member
    Join Date
    Jul 2007
    Posts
    2

    Thumbs up

    Thank you for your suggestions! I found a site that offers remotely hosted contact forms, www.emailmeform.com . Basically, I paste the html code in my website, and it calls the php script on their server who sends the email.

  5. #5
    Senior Member
    Join Date
    Oct 2003
    Location
    MA
    Posts
    1,052
    I dont know if I would want that since all the traffic is going to transmit through them in plaintext. I always have and always will write these kind of things in php. Check out this one http://www.xentrik.net/php/mailform.php

Similar Threads

  1. Windows Error Messages
    By cheyenne1212 in forum Miscellaneous Security Discussions
    Replies: 7
    Last Post: February 1st, 2012, 02:51 PM
  2. Code Injection via Hidden Form Field Manipulation
    By Chazwazza1337 in forum Security News
    Replies: 0
    Last Post: May 20th, 2006, 02:53 PM
  3. Tcp/ip
    By gore in forum Newbie Security Questions
    Replies: 11
    Last Post: December 29th, 2003, 08:01 AM
  4. Replies: 1
    Last Post: July 15th, 2002, 03:46 AM
  5. VB Multiple Form Passing ?
    By July in forum Programming Security
    Replies: 9
    Last Post: June 29th, 2002, 06:05 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •