im writing a small member system, and im storing usernames and password in a php file in an array:
<?
$logins = array(
"username1"=>"password1",
"username2"=>"password2"
);
?>
problem is how can i use php to add more users to this array without losing the current contents?