Help Please

aphan

New Member
Messages
9
Reaction score
0
Points
0
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?
 

Scoochi2

New Member
Messages
185
Reaction score
0
Points
0
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.
 

freecrm

New Member
Messages
629
Reaction score
0
Points
0
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.
 
Top