How to Manage Databases with phpMyAdmin?
phpMyAdmin is a free, browser-based tool for managing MySQL databases. It allows you to view and edit database tables, run SQL queries, import/export data, and manage database users — all without needing to know command-line SQL.
Accessing phpMyAdmin
- Login to cPanel.
- Under Databases, click phpMyAdmin.
- phpMyAdmin opens in a new tab showing all your databases on the left panel.
Key Operations in phpMyAdmin
Browse/Edit Table Data:
- Click a database, then a table name.
- Click Browse to see all rows.
- Click the pencil icon to edit a row.
Run a SQL Query:
- Select the database.
- Click the SQL tab.
- Type your SQL query and click Go.
Export Database:
- Select the database.
- Click Export.
- Choose Quick export method and SQL format.
- Click Go to download the
.sqlfile.
Import Database:
- Select the target database.
- Click Import.
- Choose the
.sqlfile and click Go.
Tip: For large databases (>50MB), phpMyAdmin may time out during import. In that case, use SSH to import via command line: mysql -u user -p dbname < backup.sql
If you continue to face issues, please open a create a request.
