php html question Explaining better from my previous question?

  • Thread starter Thread starter james c
  • Start date Start date
J

james c

Guest
I just asked a few minutes ago, "How do i create a second level admin on a script that only allows me to only add admin on one level?" I need to explain better. My script is done in php html, and on my siteadmin page when i add new admin, it only creates admin on my level, which means that all admin have access to the private company info like payment info and stuff... How can i change it to where i can admin on a second level. I know i would have to change something in the script, i just need to know how...
 
I saw your previous questions, this one is still pretty vague.

But I think I know what you are saying.

Very recently I designed a way for people to add posts to my site, but only I (the master of all admins) have the power to delete other people posts. What I did for the other admins is I made a field in the database called "main_admin", if the value is true that means it's me so I pull out all the options, if the value is false that means the person is not the "master of all admins" which means that they are not shown all the options. I handle this with an if else statement.
 
I saw your previous questions, this one is still pretty vague.

But I think I know what you are saying.

Very recently I designed a way for people to add posts to my site, but only I (the master of all admins) have the power to delete other people posts. What I did for the other admins is I made a field in the database called "main_admin", if the value is true that means it's me so I pull out all the options, if the value is false that means the person is not the "master of all admins" which means that they are not shown all the options. I handle this with an if else statement.
 
Back
Top