Reputation: 157334
Recently I created a database with a name test_test
in phpMyAdmin and just after I created it, the list of database on the left hand side spoiled suddenly, Is this a bug or I should ignore _
in database name?
Preview
localhost screen
On selecting
test_test
database
Upvotes: 6
Views: 2716
Reputation: 29462
It's not a bug, it's a feature
See http://wiki.phpmyadmin.net/pma/Config#LeftFrameDBSeparator you can change it to other pattern or disable by setting LeftFrameDBTree
to false
Upvotes: 2
Reputation: 29413
PHPMyAdmin is grouping your databases if an underscore is used. prefix_name
. They still work like usual, they are just displayed differently in PHPMyAdmin.
If you don't like it you can disable it.
Upvotes: 7