I have this array below.
$LOGIN_INFORMATION = array(
'user1' => 'user1password',
'user2' => 'user2password'
);
And I want to make the array so that it loads all the username and passwords from a datbase instead. How could I do that? Any help is appreciated.