i have a script that basically has an array to spell out the file names and corresponding "names".
PHP Code:
$domains=array( '@HomeUser' => '@HomeUser', '126' => '126', '1338' => '1338', '1503 Gamer' => '1503 Gamer', '1602 Gamer' => '1602 Gamer', '1701 Gamer' => '1701 Gamer',
first is the file name and the second is the name that's shown to the user.
now, the problem is this array at this moment is almost 1000+ entries long and i need to add another 2500 lines to it.
manually doing is time consuming and tedious.
is there is any way these array data could be "auto read" from a folder?
ps: my knowledge in this very limited 
|