|
Re: Applying rights to access account
Hi,
First of all you will have to create a table for teachers and students say users_tbl.
Then you have to make a column for login id.This login Id performs both the operations like Students, for their ID and Teachers for their username.
You can implement the security code on the form.You can apply permissions on that, like the student will only check their details not modify but the teachers can do everything they want.
Finally you have to check whether the user in a teacher or Student.If the user is student then disable the edit options but if the user is a teacher then allow addition, modification and deletion for that....
|