briankopy Posted March 29, 2010 Share Posted March 29, 2010 I'm basically trying to make a database administrator interface web page/app... I'm using Wamp server phpMyAdmin MySQL users sign in using a username that they can input into a database called database1 table called users if the user doesn't have an account he can create one by entering username and a password twice they can access another table called customertable and Display, Insert, Modify, Delete Contacts, and Logoff So I basically need a login page and a admin page. Any help would be greatly appreciated. Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/ Share on other sites More sharing options...
briankopy Posted March 29, 2010 Author Share Posted March 29, 2010 a little extra info, not sure if necessary fields for customer table: firstname, lastname, city, state, zip, street_address, area_code, phone_number Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1033647 Share on other sites More sharing options...
ignace Posted March 29, 2010 Share Posted March 29, 2010 A DBMS already has tables to manage users and to control access to it's resources (databases, tables, views, procedures, ..) Take a look at the information_schema database Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1033730 Share on other sites More sharing options...
briankopy Posted March 29, 2010 Author Share Posted March 29, 2010 I checked that out on MySql.com but didn't really get anywhere, could you elaborate or clarify. Thanks, but still at square 1 here. Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1033773 Share on other sites More sharing options...
ignace Posted March 29, 2010 Share Posted March 29, 2010 http://dev.mysql.com/doc/refman/5.5/en/dynindex-is.html Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1033776 Share on other sites More sharing options...
jcbones Posted March 29, 2010 Share Posted March 29, 2010 http://dev.mysql.com/doc/refman/5.1/en/adding-users.html I'm correct in that this is user accounts for the database, and not for a website, or other program? If so, you will need root access to the database (which you aren't likely to get on a shared server). Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1033793 Share on other sites More sharing options...
AdRock Posted March 30, 2010 Share Posted March 30, 2010 have a look here for loads of tutorials from creating a registration script to users logging in and out http://www.plus2net.com Link to comment https://forums.phpfreaks.com/topic/196885-mysql-user-registration-and-login/#findComment-1034412 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.