my html form is not submitting please help.

Discussion in 'HTML & Website Design' started by Musyoka, Mar 1, 2014.

  1. #1
    <form action="Back-End+Script.asp" method="get">
    <input name="submitted" id="submitted" value="1" type="hidden">

    <label for="name">Your Full Name*: </label><br>
    <input name="name" id="name" maxlength="50" type="text"><br>

    <label for="email">Email Address*:</label><br>
    <input name="email" id="email" maxlength="50" type="text"><br>

    <label for="phone">Phone Number:</label><br>
    <input name="phone" id="phone" maxlength="15" type="text"><br>

    <label for="message">Message:</label><br>
    <textarea rows="10" cols="50" name="message" id="message"> </textarea>
    <input value="submit" type="submit">
    </form>
     
    Musyoka, Mar 1, 2014 IP
  2. anitarana

    anitarana Greenhorn

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #2
    plz firstly you have check in html layout in online
     
    anitarana, Mar 2, 2014 IP
  3. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #3
    "Back-End+Script.asp" -- it's not really named that, is it? I'd suspect that might be the problem as when it comes to URI's it's better to avoid non-word characters. Restrict yourself to a to z, A to Z, 0 to 9 and _ for filenames of anything you're going to call as code. That's the only thing I'm immediately seeing that could be an issue... apart from that, it's nice to see someone using label properly for a change, though it would be nice if you had a valid form structure with a FIELDSET around your fields since you NEED a block level child for FORM (No matter what the HTML 5-tards now say)
     
    deathshadow, Mar 3, 2014 IP
  4. Imran Shariff

    Imran Shariff Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    31
    #4
    It seem that the error is in your action="your action file with url goes here". try changing or add the file with the location.
     
    Imran Shariff, Mar 4, 2014 IP