How do I enable an email form within my webpage?

Discussion in 'HTML & Website Design' started by filthymonkey, Oct 21, 2007.

  1. #1
    Hello all, very new to digital point and I'm very new to all this. I have downloaded a free template awhile ago and tweaked it to my liking...on my contact page I have a form set up where a person enters their name, email and a msg and a button to post but when I test it I get this: Any suggestions on what I need to do?

    405 Method not allowed

    Method Not Allowed
    The requested method POST is not allowed for the URL /ultimateav.ca/contact.html.

    S
     
    filthymonkey, Oct 21, 2007 IP
  2. jBud

    jBud Peon

    Messages:
    387
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I'm guessing there is an error to where the form is being posted to,
    but i can't say without looking ate the actual code.
     
    jBud, Oct 22, 2007 IP
  3. Blame Me

    Blame Me Guest

    Messages:
    162
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I'm fairly certain that you are missing something in the little section of code for your form.

    You code is:

    <form method="post" action="MISSING PART">
    <p><label for="name">Name: </label><input type="text" name="name" id="name" /></p>
    <p><label for="email">E-mail: </label><input type="text" name="email" id="email" /></p>
    <p><label for="msg">Message: </label><textarea name="message" id="msg" rows="5" cols="25"></textarea></p>
    <p><label for="submit">&nbsp;</label><input type="submit" id="submit" value="send" class="btn" /></p>
    </form>

    You are missing a "Go to destination" for the action="??????" part of the form.

    Sort that out and I think it should work.

    Actual page your working from is @ http://ultimateav.ca/contact.html
     
    Blame Me, Oct 22, 2007 IP