05-29-2011, 11:28 AM
|
#1 (permalink)
|
|
The Contributor
Join Date: Feb 2010
Posts: 69
Thanks: 16
|
reading array from file help
hey guys i have myself stuff on reading an array, My admin cp login reads from an array like this
PHP Code:
$LOGIN_INFORMATION = array(
'name' => 'password',
'name' => 'password',
'name' => 'password'
);
The bottom 2 need to be there by default because they are the main logins, the file it gets the info from is encrypted but decrypting i can do but how would i go about reading the file in the array,
PHP Code:
$LOGIN_INFORMATION = array(
(this is where i need to get the data from the file)
'name' => 'password',
'name' => 'password'
);
|
|
|
|