I have a page where the user logs in as either admin or normal user. Once entered, the user can perform certain functions. One of the functions is to be able to modify an item, however only admin users can modify. how do i check to see if that person is admin or not without making them relogin??
You could store the required information in a session, something like $adminMode = 1; session_register("adminMode"); PHP: