i want it to access data already in my sql tables, i'd prefer if i could use usernames passwords already there but if i cant im willing to try out something different
phpmyadmin does this. you could wrap it with a login screen.
however, this seems to be a really bad idea from the perspective of data integrity. and would it not allow one user access to another's data?
if you want to build a very simple system then consider adding on a simple CRUD interface behind a login screen. I have posted a CRUD (php + mysql) here. you will need to wrap the sql selects with something that uniquely identifies that user. you will also need to deliver nonces to the browser to ensure that users cannot alter content that is not theres. a nonce solution is posted here
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.