How to use submit button on HTML?

Batch, ASP, JScript, Kixtart, etc.
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 13 years and 2 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
bettyreed
Posts: 1
Last visit: Mon Aug 16, 2010 7:41 pm

How to use submit button on HTML?

Post by bettyreed »


Hi friends!
I want to make an application in which there should be a forum for
admission in a school. these information should be inputted in the
forum - student name, class, father name, last year's percentage.
and when the user will fill-up the forum then he will press submit
button and then i want to store all that information inputted by user.
i know to make this forum by HTML but i don't know how to store that information which is inputted by user.
please help me.
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

How to use submit button on HTML?

Post by jvierra »

Hello -

The question you are asking is about a web page. This forum is not about web pages but is about administrative scripting using an HTA or Hypertext Application.

HTAs do not use a submit button and are not capable of submitting data to a web form.

You can use an HTA to save information to a file, spreadsheet or database on the local machine or on a network share.

The easiest way to save data is save it to a file using the FileSystemObject.

If this is what you would like to do then post the code or HTA that you have written and someone will try to help you find what you need to complete the exercise.
jvierra2010-11-11 09:50:21
User avatar
paulthompson
Posts: 1
Last visit: Tue Nov 09, 2010 8:20 pm

How to use submit button on HTML?

Post by paulthompson »

you need to have a php file that will process the information on your form and save it to your database.
User avatar
Clinical SAS Training
Posts: 1
Last visit: Wed Jan 19, 2011 6:01 pm

How to use submit button on HTML?

Post by Clinical SAS Training »

Hi,bettyreed




A submit button created using <input type="submit>
is rather a drab looking gray colored entity, unless you know style
sheets. here
is a solution to add color to your HTML forms.The simplest way is to use an image as a submit button employing the <input> HTML form tag.
<input type="image" src="butup.gif" alt="Submit button">From
USAezTrainings, Phone:1 978-223-9023Fax: 1 978-824-2364info@eztrainings.com
Clinical SAS Training2011-01-20 02:05:59
This topic is 13 years and 2 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked