Hi
I have a pass protection script which stores usernames and passwords in a seperate php file.
I need to create a form where users can change their passwords. It needs to be so that they have to enter their username, current pass., new pass (twice) and then it will let them change it,
The names and passwords are stored in an array like this:
users = array(
"abc" => "def",
"ahkajs" => "kjhkjhkj"
);
Can you help me?
I am aware of the security issues using this method, so don't explain to me what they are again!
Thanks.