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?
@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