views:

637

answers:

3

By default, phpMyAdmin shows me 30 rows whenever I load a table (the query contains "LIMIT 30"). I generally want to see (up to) a few hundred rows.

Is there a way to change that default setting?

A: 

phpMyAdmin has a config file called config.inc.php. You should be able to find appropriate setting in there.

Eimantas
+2  A: 

There is a config setting for this:

http://www.phpmyadmin.net/documentation/Documentation.html#cfg%5FMaxRows

Dextro
+1 for the link. i was too lazy to search for it ,)
Eimantas
+2  A: 

In your phpMyAdmin directory, there will be a file called "config.inc.php".

Find the line where it sets the MaxRows value:

$cfg['MaxRows'] = 1000;

And change the value to whatever you want.

BraedenP
In my copy, that line didn't exist, so I added it.
Nathan Long