How do you use PHP to retrieve user data stored in a table? i.e.:
THE TABLE: 'SomethingRather.exe'
------------------------------------
NAME | PASSWORD | ACCESS LEVEL |
------------------------------------
NAME2|PASSWORD2|ACCESS LEVEL2|
------------------------------------
NAME3|PASSWORD3|ACCESS LEVEL3|
------------------------------------
Say I want to find NAME2's password and access level. What do I do? And here is the catch: I need to search through the users to find the one I want. i.e. they type Name2 and I need to find their password, etc.
Anyone?
Thanks

