Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

HTML Forms

Options
  • 18-02-2003 7:07pm
    #1
    Registered Users Posts: 446 ✭✭


    Is there a way to send the info from a simple for to another page without having to use cgi, asp etc?

    <form action="ViewGuest.html" method="get" name="Guests">

    <B>Name:<input type="text" Value ="" name="Name" size=15><br><BR>

    Email:<input type="text" Value ="" name="Email" size=15><br><bR>

    <TEXTAREA NAME="COMMENTS" ROWS=10 COLS=30>
    Write your comments here!!!
    </TEXTAREA><br>

    <INPUT TYPE="submit" VALUE="Send">
    <INPUT TYPE="reset" VALUE="Clear">


    </form>


Comments

  • Registered Users Posts: 2,119 ✭✭✭p


    What are you trying to do?

    - Kevin


  • Registered Users Posts: 1,967 ✭✭✭Dun


    If you just want to display the information on a different page you can use cookies to save and recall the information from the form.


  • Registered Users Posts: 446 ✭✭kegan5


    I'm trying to do a simple Html page where by I ask for name email and comments and then when they click Submit...these fields go into some form of a table on another page.

    I assume I need some kind of variables but I've never seen them in HTML


  • Registered Users Posts: 7,468 ✭✭✭Evil Phil


    No you can't use variables in HTML. You'll need a script to process the form. What scripting languages are available on the webserver this is running on?


Advertisement