Forum Moderators: mack
I'm going to be honest, my web page design skills are quite limited. I know how to create web pages in HTML, and have taken a few Java / C++ courses, but other than that my knowledge is quite limited.
So anyway, I'm really just trying to find what path to take and a good place to try to learn some information.
I would like to try and create a database where a group of people can add their own "lists" of numbers, for instance, and then be able to gather all of that data and perform calculations on it. For data entry, I would like to attempt to create some kind of user friendly method of entering the data (flash?), and a way for the database to remember the person's list(s).
So, I'm guessing I'll need to know how to make a user database, and associate lists with them, as well create the "list" database, and create a user interface for entering data.
I don't mean to be asking for anything too specific here, so I'd really appreciate if someone could tell me what I will need to learn, and some good places to learn it.
Thanks a lot!
You'll also need to pick up the basics of SQL. MS Access's query builder is a good graphical tool for building and testing SQL statements.
For coding database-driven web pages PHP and MySQL are probably the best options, or you can go the MS route of ASP/.Net and SQL Server.
The web is a good place to look to learn stuff... ;) HTH.
So anyway, I'm really just trying to find what path to take and a good place to try to learn some information.
Try the documentation area of MySQL.com [dev.mysql.com]
Learn by examples [dev.mysql.com]
[url=http://dev.mysql.com/downloads/mysql/5.1.html#downloads]Download it free [dev.mysql.com], a great way to work with mySQL is to install a local copy on your machine. You can launch the mySQL server right on your local computer, experiment with select commands, create databases and tables, all before doing any remote work on a live server. It's an invaluable tool.
The difference between MSSql and mySQL are minor, really, it's still based on the Structured Query Language. With MS apps the servers . . . are not free.
For data entry, I would like to attempt to create some kind of user friendly method of entering the data (flash?),
This can be done but is not the easiest way to get started as you have to learn and incorporate Flash into the database connection, requiring two technologies. Most web-based database connection is done using regular old web forms, posted to the language of your choice. There are mySQL API's for just about any programming language.