MySQL Database Administration
Manage your MySQL databases using phpMyAdmin 2.6.0. You can create tables, run SQL queries, import and export data, and manage database users.
MySQL Server Information
| MySQL Version | 4.0.24-standard |
|---|---|
| Server Hostname | localhost |
| Server Port | 3306 |
| phpMyAdmin Version | 2.6.0-pl3 |
| Max Connections | 100 (per server) |
| Max Database Size | Varies by plan (20 MB – 100 MB) |
Note: Remote MySQL access is disabled by default on shared hosting. If you need to connect from an external application, please submit a support ticket to have your IP address added to the MySQL access list.
Connection string (PHP):
$conn = mysql_connect("localhost", "your_username", "your_password");
mysql_select_db("your_database", $conn);