Hi everyone,
I need to create a onine training matrix for the company's respective sections.
I got the database, forms for inputing of skill for each individual, and displaying them for each individual. However I'm stuck when it comes to show a matrix for the section with all the people on it.
I'm attaching 2 pics: database layout and what I want to achieve.
the sql query I'm using to get data is:
SELECT * FROM training_matrix
INNER JOIN skills ON training_matrix.skillID=skills.skillID
INNER JOIN users ON training_matrix.userID=users.uid
WHERE training_matrix.sectionID=$section
$section is a value passed from from
any idea how to do it, do I need to rewrite the query? anything that can help really.
Thanks