you could use this as a simple databse
look into the function parse_ini_file
http://www.php.net/manual/en/function.parse-ini-file.php
#users.ini
[users]
ednark=ednark_password
ShawnD=ShawnD_password
MrAlaska=MrAlaska_password
gives you
$file = parse_ini_file('users.ini',TRUE);
$file = array(
'users' => array(
'ednark'=>'ednark_password',
'ShawnD'=>'ShawnD_password',
'MrAlaska'=>'MrAlaska_password',
)
)
if you do this than you need to worry about adding, removing, and updating specific values of the file.