I want to use Adminer Editor to allow users to change rows in one table. I use this function to limit users to see only the table I want:
function tableName($tableStatus) {
if($tableStatus['Name']==$TABLE_NAME)
return $TABLE_NAME;
}
But - I want the users to change only rows with a certain condition (for example: branch_id=10
).
Who can I do this?