phpMyAdmin: change default number of rows displayed?

前端 未结 10 1279
我在风中等你
我在风中等你 2020-12-09 01:36

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

10条回答
  •  不知归路
    2020-12-09 02:27

    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.

提交回复
热议问题