I have 7 different levels of users. Each user is only allowed to pick various options for a record. Not every user level is the same and some do share the same options.
Example: User Level 1 might be able to pick "sell, jacket, turns" where user level 2 can pick "sell, mark, diamond"
Instead of creating the same page for all 7 levels. I created a table that has the following fields: userlevel, options
My idea was that I could just enter in all the optional choices for each level in the table. Then in the visual editor on that page I could use the lookup table feature. So that only the options come up that person level would allow.
I have a user table where each users - usernames, passwords and userlevel is assigned. Then the options table with options and userlevel fields. How would I get the logged in user's userlevel to match up with the options table userlevel.
Does this make sense?