I've made a page in which an admin can manage and update account information of other users. I currently have a drop-down list that is able to select which user from the database to update, but I would like it to auto-populate the form below it, based on which option they choose.
How do I go...
I have two types of users - guest and member - which are defined in a table called users, by a int called admin. A guest has an admin value of 0, while a member as an admin value of 1.
I have users login using a form on (index.php) which uses a pass-through page (login.php) that redirects them...