forked from Samnan/MyWebSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.php
More file actions
21 lines (20 loc) · 770 Bytes
/
Copy pathdatabase.php
File metadata and controls
21 lines (20 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* This file is a part of MyWebSQL package
* defines per server database access list to restrict connection to a list of databases
*
* @file: config/database.php
* @author Samnan ur Rehman
* @copyright (c) 2008-2012 Samnan ur Rehman
* @web http://mywebsql.net
* @license http://mywebsql.net/license
*/
// match the keys of this array to those defined in servers.php in the same folder
// keys that do not exist in servers list will be simply ignored
// if a server's database access is not defined here, then it will show all databases
// (given that the logged in user has access to all those databases)
$DB_LIST = array(
'Test Server' => array('test', 'wordpress'),
//'Test Server 2'' => array('test')
);
?>