Application Dev Question
Application Dev Question
Out of context: Reply #3
- Started
- Last post
- 8 Responses
- enobrev0
set up a separate table - something like tblprogress.
In that table, hold an activityID, date, percentage.
Then whenever you query the activities db, query the progress table for all the progress on the current activity (according to activity_id) ordered by date.
You can do the math of current progress, etc with a variable.