Hello
I have php installed with a mysql database of users. I want to do authentification (ie restrict the access per user) using my database.
I tried the solution given in the php manual but have a problem/question.
The method proposed seems not verifying anything, ie after the user enters a username/password once, http let the hand for the php script. Ok I verify the username/password against my database. Here comes the problem: if the data entered is not valid, the user normally would enter new data. But http seems remember the old data and compare the new data to this old data, assuming the old data is right, so the user cannot enter anything else. I am true?
Is thewre some existing material to do this?
Thanks