I learned html/css a while ago, but i can't of a way to approach my problem.
Does anyone know a way for people to input value into a form (e.g. First Name, Age, Gender). and have it stored into a table, so that I can view every entry?
I learned html/css a while ago, but i can't of a way to approach my problem.
Does anyone know a way for people to input value into a form (e.g. First Name, Age, Gender). and have it stored into a table, so that I can view every entry?
You will need to use a database to store the form inputs for your later viewing. Or alternatively, save the data in flat text files on your server. In either case, you'll need a programming language such as PHP to do the work.
Read this post and keep checking the topic for information on how to start up a database and use it.
If anyone can see it, my post was meant for anyone who reads it. Don't take it personally or think I'm being condescending... :nuts:
Scoochi2 has already covered the basics.
As an examples, you would have a MySQL back-end database, sitting on a Linux Server with PHP server-side processing script to create the UI.
This setup is commonly called LAMP (Linux, Apache, MySQL, PHP) and is both free and very powerful.