I have a file called "users.php" kept below the document route on my server which contains the passwords for users to access the members only area on my website:
<!--Begin users.php--!>
<?php
$LOGIN = "login1";
$PASSWORD = "password1";
$LOGIN = "login2";
$PASSWORD = "password2";
?>
<!--end users.php--!>
I need a web based way of adding users to the password list. Can somebody help me?
Alsoif possible, i need a way of allowing the users to change theyre password.
Any help would be greatly appreciated.
Thanx
Jonathan