I'm trying to come up with a web-application, a somewhat like step-by-step or procedural application. I can't really describe it and don't know how to call it, but it is an application that presents a step-by-step instructions on how to achieve certain stuffs, like job application.
"An application that aids the user on how to do things."
So I've setup some GUI, and now I'm facing the core of the problem: database setup.
In the GUI I designed, I decided it to be like this:

Legend:
- green with a check - completed
- orange - the user is currently on that step
- grey - he hasn't started any of the substeps in there.
As the picture implies, I have 3 toplevel procedures, and some other child-procedures under each procedure. One thing that is missing in that picture is that the toplevel procedures are also under a certain category.
And what I want to achieve is to keep track of users' activity. And here is the deal:
- It is not necessary that you must finish the first toplevel procedure to proceed to the next, you could skip and go back -> there is no problem about this.
- After completing all the child-procedures, the toplevel procedure flags 1 for that certain user, meaning it is completed.
- Same goes for the category, when all the toplevel procedures under that category is completed, the category flags 1 for that certain user, meaning he/she completed the category.
And I plan to setup my database like this :
-tbl_users-
id | username | password |
-----------------------------------------
1 | some_user | adf8jkdfndsa |
...
tbl_step_cat
id | cat_name |
---------------------------
1 | some_category |
...
tbl_steps
id | step_shortdesc | step_longdesc | cat_id
-------------------------------------------------------------------
1 | some step one | do the following... | 1
-------------------------------------------------------------------
2 | some step two | do the following... | 1
-------------------------------------------------------------------
3 | some step three | do the following... | 2
...
tbl_substeps
id | substep_shortdesc | substep_longdesc | step_id
-------------------------------------------------------------------
1 | some substep one | do the following... | 1
-------------------------------------------------------------------
2 | some substep two | do the following... | 1
-------------------------------------------------------------------
3 | some substep three | do the following... | 1
-------------------------------------------------------------------
4 | some substep a | do the following... | 2
-------------------------------------------------------------------
5 | some substep b | do the following... | 2
-------------------------------------------------------------------
6 | some substep 1 | do the following... | 3
...
And then the relationship tables between the user and the steps
tbl_user_stepcat
id | user_id | stepcat_id | datetime
-------------------------------------------------------------------
1 | 1 | 1 | sometime
-------------------------------------------------------------------
2 | 1 | 2 | sometime
-------------------------------------------------------------------
tbl_user_step
id | user_id | step_id | datetime
-------------------------------------------------------------------
1 | 1 | 1 | sometime
-------------------------------------------------------------------
2 | 1 | 2 | sometime
-------------------------------------------------------------------
tbl_user_substep
id | user_id | substep_id | datetime
-------------------------------------------------------------------
1 | 1 | 1 | sometime
-------------------------------------------------------------------
2 | 1 | 2 | sometime
-------------------------------------------------------------------
I'm sorry if this is a bit long, it's just because of the codes.
Now my questions is how do I return my desired outcome. As you can see, when the user logs in into the application I want him/her to see those information right up.
I have never tried it as of this moment, because my brain just shuts down and is out of focus and this is my best time so far.
If I were to code the SQL of this application I will ofcourse do multiple joins.
I want to first select all categories and output it to the user.
SELECT * FROM tbl_step_cat
This will give me all the categories, and what I want to do next is to find out which step is completed or not, so that I could do the 'stylings'
I might do
SELECT cat_name FROM tbl_step_cat JOIN
tbl_user_stepcat ON tbl_user_stepcat.stepcat_id = tbl_step_cat.id
...
I'm out of focus and can't think now. How do I do these :
- Output all the cats/steps/substeps
- Fetch those who has an entry, in the relationship tables, meaning it has been completed
- where
user = session['user']
Thank you so much, I just needed guidance.
