abu abu
abu abu

Reputation: 7022

Display all tables in phpMyAdmin

How can I display all tables of a Database in phpMyAdmin ? I would like to display more tables in below images.

enter image description here

Upvotes: 1

Views: 883

Answers (1)

Andrei Fiordean
Andrei Fiordean

Reputation: 223

go to config.inc.php file in the PHPMyAdmin root folder:

and change this line

$cfg['MaxTableList'] = 250;

to how many you actually want. Hope this helps you!

Upvotes: 1

Related Questions