J
|
Jane 7/18/2008 |
Hi, |
B
|
bosco author 7/18/2008 |
I have a table used to store login and password. However, I would like to have an admin account which is not in that table thus not deletable and not known by other admin. |
J
|
Jane 7/18/2008 |
I recommend you to create superadmin in the users table and do not show superadmin account for all users. select ... from users where UserName!='Superadmin' |
B
|
bosco author 7/18/2008 |
Thank you so much Jane. |