This is the problem I have. I have a side menu like:
Options A:
A
B
C
Options 1:
1
2
3
Options A and Options 1 are coloumns in a sql table, so If I clicked on A:
whatever.php?OptionA=A
However I want it to be able to multi select, so if I clicked on A, then clicked on B, it would filter the table so that it shows A and B only.
Also, I should be able to select in Options 1 also, so if I clicked on A then 1 it would be:
whatever.php?OptionA=A&Option1=1
The main issue is how can I do it so it can show A and B together?