Which form appears
depends on $cfg['DisplayServersList']. By default, this parameter is set to
FALSE, so we see a drop-down list of servers. Setting $cfg['DisplayServersList']
to TRUE produces a list of links to all defined servers:
Handling Many Databases or Tables
Before phpMyAdmin 2.11, it was difficult to work with the interface if we had access
to hundreds or even thousands of databases, or hundreds of tables in the same
database. Loading of the navigation panel was slow or did not work at all. In 2.11,
the interface has been reworked to take care of this.
Chapter 3
[ 57 ]
Two new parameters, shown here with their default values, establish a limit on
the number of databases and tables displayed, by adding a page selector and
navigation links:
$cfg['MaxDbList'] = 100;
$cfg['MaxTableList'] = 250;
The effect of $cfg['MaxDbList'] can be seen on the main panel in Server view:
...as well as in the navigation panel:
In version 2.11.0, the $cfg['MaxTableList'] feature has not been completely
implemented. Nonetheless, the number of tables displayed in Database view and in
the navigation panel is limited by this parameter, and there is a page selector in the
main panel.
Right Panel
The right panel is the main working area, and all the possible views for it are
explained in the following sections. Its appearance can be customized.
Pages:
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81