Codes for recording student data in HTML

Asked By 20 points N/A Posted on -
qa-featured

Can somebody give me some inputs on how to make a web program in HTML for first graders to record their grades name wise? I need to add some sorting options like age and name wise in the program?

SHARE
Answered By 0 points N/A #147427

Codes for recording student data in HTML

qa-featured

Only HTML may not be sufficient to make the web program you require.

HTML can be used to display outputs or to receive inputs. It can not perform logical tasks. You will need some server side language in web programming like php, asp, jsp etc to perform the tasks like storing, retrieving and manipulating data.

As you want to record the grades, you will need some kind of storing mechanism to store the data and retrieve it when needed. You can use database servers or a simple file to store data. It will depend on the complexity of your records.

Thanks.

Related Questions