> ## Documentation Index
> Fetch the complete documentation index at: https://help.noxity.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Browse tables, run SQL, import or export dumps, and repair tables. All the everyday phpMyAdmin tasks.

phpMyAdmin is the web-based MySQL client included with every cPanel hosting account. It's how you'd browse data, run queries, take backups, and fix table corruption without ever opening a terminal.

Open it from cPanel home → **Databases** → **phpMyAdmin**. cPanel logs you in automatically as your account user, no extra password.

<Frame caption="phpMyAdmin landing page with the database tree on the left and the welcome panel">
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/landing-light.png" alt="phpMyAdmin landing page" className="block dark:hidden" />

  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/landing-dark.png" alt="phpMyAdmin landing page" className="hidden dark:block" />
</Frame>

## What's covered

<CardGroup cols={2}>
  <Card title="Browse data" icon="table" href="/web-hosting/cpanel/database-management/phpmyadmin/browse">
    Navigate the database tree, open a table, page through rows, and edit cells inline.
  </Card>

  <Card title="Import a dump" icon="file-import" href="/web-hosting/cpanel/database-management/phpmyadmin/import">
    Restore a `.sql` or `.sql.gz` file. Includes the workaround for files larger than the upload limit.
  </Card>

  <Card title="Export for backup" icon="file-export" href="/web-hosting/cpanel/database-management/phpmyadmin/export">
    Quick vs custom mode, format options, compression.
  </Card>

  <Card title="Run SQL queries" icon="terminal" href="/web-hosting/cpanel/database-management/phpmyadmin/sql">
    The SQL tab, query history, and bookmarks.
  </Card>

  <Card title="Table operations" icon="screwdriver-wrench" href="/web-hosting/cpanel/database-management/phpmyadmin/table-operations">
    Repair, optimize, rename, change collation, truncate, drop.
  </Card>
</CardGroup>

## What you can't do

phpMyAdmin on shared hosting hides the things that need server-wide privileges:

* No access to the `mysql` system database (no editing global users or grants)
* No `Variables` or `Status` server-config pages
* No `Privileges` tab at the top level (use [Manage My Databases](/web-hosting/cpanel/database-management/manage-databases) for that)

You're sandboxed to your own databases. That's a feature, not a limitation.

## Tips that save time

* The left tree filters as you type. Click into the search box above it and start typing a table name to jump straight to it.
* Every action you take through the UI prints the equivalent SQL above the result. Copy it into a script when you want to repeat the operation.
* The **Bookmarks** feature on the SQL tab keeps recent queries around. Useful for repeated cleanup tasks.

## Need a hand?

<CardGroup cols={2}>
  <Card title="Open a ticket" icon="life-ring" href="https://members.noxity.io/submitticket.php">
    Best for anything that needs an account check or a config change on our end.
  </Card>

  <Card title="Live chat" icon="messages" href="https://noxity.io/contact">
    Faster for quick questions during business hours.
  </Card>
</CardGroup>
