HTML Form Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    HTML Form

    Kuro L Lawliet
    Kuro L Lawliet
    Forumember


    Posts : 123
    Reputation : 10
    Language : English

    HTML Form Empty HTML Form

    Post by Kuro L Lawliet August 1st 2010, 10:48 pm

    I read this : https://help.forumotion.com/tricks-tips-f32/contact-form-t37709.htm

    And... I'm really confused, because it won't send the data to my e-mail

    Here the code that I try to use

    Code:
    <font size="3" color="black"><form action="mailto:XXXXXX@yahoo.co.id" method="post" enctype="text/plain">
    <img src="http://i47.tinypic.com/2ijnp00.jpg"></img><br><br>
    Username (Sender) :<br><input type="text" name="Sender"><br>
    Username (Receiver) :<br><input type="text" name="Receiver"><br><br>
    You want to :<br>
    <input type="radio" name="Buy" value="Buy" /> Buy<br>
    <input type="radio" name="Sell" value="Sell" /> Sell<br>
    <input type="radio" name="Change Order" value="Change Order" /> Change Order<br><br>
    Choose Medals That You Want To Buy / Sell :<br><form>
    <input type="checkbox" name="vehicle" value="Bike" /> 1

    <input type="checkbox" name="vehicle" value="Car" /> 2<br><br>
    </form>


    <input type="submit" value="Submit">
    </form></font>

    I try it and check my e-mail... Then nothing comes out

    Help me please~

    Or maybe are there any way to make it sent to PM or a thread instead?
    KingOfSports
    KingOfSports
    Hyperactive


    Male Posts : 2487
    Reputation : 38
    Language :
    Location :

    HTML Form Empty Re: HTML Form

    Post by KingOfSports August 1st 2010, 11:29 pm

    You have to remove the word "Buy" from HTML pages for them to work.
    Kuro L Lawliet
    Kuro L Lawliet
    Forumember


    Posts : 123
    Reputation : 10
    Language : English

    HTML Form Empty Re: HTML Form

    Post by Kuro L Lawliet August 2nd 2010, 10:10 am

    Eh? Why is Buy becomes the problem?

    Am I need to remove all word "Buy" ?

    EDIT
    : I Already remove all the word Buy but it still won't work
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    HTML Form Empty Re: HTML Form

    Post by ankillien August 2nd 2010, 11:23 am

    Hello,
    I think the code has a bug.

    This code should fix it...

    Code:
    <font size="3" color="black"><form action="mailto:XXXXXX@yahoo.co.id" method="post" enctype="text/plain">
    <img src="http://i47.tinypic.com/2ijnp00.jpg"></img><br><br>
    Username (Sender) :<br><input type="text" name="Sender"><br>
    Username (Receiver) :<br><input type="text" name="Receiver"><br><br>
    You want to :<br>
    <input type="radio" name="Buy" value="Buy" /> Buy<br>
    <input type="radio" name="Sell" value="Sell" /> Sell<br>
    <input type="radio" name="Change Order" value="Change Order" /> Change Order<br><br>
    Choose Medals That You Want To Buy / Sell :<br><form>
    <input type="checkbox" name="vehicle" value="Bike" /> 1

    <input type="checkbox" name="vehicle" value="Car" /> 2<br><br>
    <input type="submit" value="Submit">

    </form></font>

    And remember to replace your e-mail id with 'XXXXXX'
    Kuro L Lawliet
    Kuro L Lawliet
    Forumember


    Posts : 123
    Reputation : 10
    Language : English

    HTML Form Empty Re: HTML Form

    Post by Kuro L Lawliet August 3rd 2010, 7:52 am

    Erm... What in my code that cause the bug?
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    HTML Form Empty Re: HTML Form

    Post by ankillien August 4th 2010, 9:57 am

    This part...

    Code:
    <input type="checkbox" name="vehicle" value="Car" /> 2<br><br>
    </form>
    <input type="submit" value="Submit">
    </form></font>

    You closed the form tag before adding the submit button.