I am designing a MySQL schema, with an "Account" tables for users and a "Groups" table for usergroups with a m:n relation between these two tables. Users can log in and are saved into a session in php.

What are the best practices to handle read and write access to rows in other tables of my database based on the id of the logged-in user or the groups he is in?

link|improve this question

I'd suggest using an AOP pattern to create a simple set of annotations (or equivalent construct) that you can use to mark your business-logic methods with, like @RequiresGroup('admins') and so on. This can be quite effective in Java, but I'm not sure what the equivalent is in PHP. – aroth Jun 24 '11 at 3:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.