I guess the easiest way to explain this is to tell you what i'm trying to do.
I'm building a site where people can create an account and login, then store certain information (say their name and email address for ease). I got that to work using php and mysql.
Now I want to add to it though. I want people to be able to log in every day and add some information. Here's an example sort of. Say someone's job is to enter order forms into a computer. I want them to be able to go to my site and add for each day how many order forms they got done. Without erasing the previous days. So basically I need a 2d array that looks like this:
Date______Orders
6/15......10
6/16......8
6/17......13
etc. Since you can't seem to store an array inside a mysql table I can't think of a way to do this without creating a new table for each individual user which has two elements, date and orders.
If possible I'd like to only create one table that stores all the information for all users. I'm thinking there has to be an easy way to do this but I'm not familiar enough with mysql to do know how.
Any help is appreciated =)