Thread: HTML Form Question
Results 1 to 8 of 8
Related
-
Form Question Forum: HTML Forum
Replies: 4 -
text form question Forum: Website Scripts Forum
Replies: 0 -
Another form question?.... Forum: HTML Forum
Replies: 15 -
Form Question Forum: Website Scripts Forum
Replies: 2 -
Form Question Forum: CGI Perl Forum
Replies: 5
-
09-11-2007, 06:25 PM #1
HTML Form Question
<form action="orderreceived_1.shtml"
method="post" onsubmit="return checkform()">
<input type="text" id="address" />
This form is to send the inputted address to the "orderreceived_1.shtml". But what are the codes in the "orderreceived_1.shtml" in order to show the data which I inputted at the previous page??
-
09-11-2007, 06:30 PM #2
Re: HTML Form Question
It needs to be a script to process the data. You will have to search around for a script to do what you want.
-
09-11-2007, 06:40 PM #3
Re: HTML Form Question
Javascript?? Can you explain more on it or give some examples?? Thank you very much for your help.
-
09-11-2007, 07:31 PM #4
Re: HTML Form Question
All a form does is post info to some sort of script
Code:<form action="orderreceived_1.shtml"
So, you must figure out what your needs are, what functions do you need. This will tell you if a client side script like js will work or if you need something with the security of a server side script like php or asp. You will also need to know what you can run on your particular server.
D
-
09-12-2007, 01:24 AM #5
-
09-12-2007, 08:54 AM #6
Re: HTML Form Question
HTML is a markup language. Again, unless I know your needs I cannot guide you toward the proper script.
-
09-12-2007, 09:04 AM #7
Re: HTML Form Question
[orderreceived_1.shtml]
This is just a prototype page to show an example of the message a user would see when they have
used the order form to place an order. Provide an example of the following submitted details
• The item details: Item name, code, colour, price etc,
-
09-13-2007, 11:24 AM #8
Re: HTML Form Question
HTML Code:<form action="orderreceived_1.shtml" method="post" onsubmit="return validateform()"> <tr> <td>Quantity of items:</td> <td><input type="text" id="quantity" name="quantity" /></td></tr> <div> <input type="submit" value="Submit" /> </div> </form>