Hi,
I want to create the following list
index store subject remark
1 A wallet found in closet
2 B shoe eaten by the dog
A login person (belonging to a site) can only see and edit the data from his site.
table login:
ID groupID storeID name pasword email
1 admin admin fgfgfdg 1@w.com
2 store A paul sdwer 1@b.com
3 store B carin fdhgf 2@c.com
4 central ? john fdgfdg 3@d.com
to get different access rights for the different groupIDs is succesful, also editing data only from their own store based on storeID is succesful.
I would like to create a special site user or group (central) which can read data from all sites but only edit the remark field.
Do i need to create a seperate table for the remarks to get different access rights for this column. How to proceed?
best regards specpa