QUOTE(MrFish @ Jun 13 2009, 04:42 AM)

It's still taking incredibly long. I'm going to try another server.
Edit:
Nevermind, I can't try another server because of this server move. Can a mod tell me if it's possible to use commands like CREATE TABLE and CREATE DATABASE in php on zymic? If it is possible then I don't even need phpmyadmin.
Yes you can create a table and a database via php.. Using this code..
SQL
CREATE TABLE inventory
(
id INT IDENTITY(1,1) PRIMARY KEY,
product VARCHAR(50) UNIQUE,
quantity INT,
price DECIMAL(18,2)
)
SQL
CREATE DATABASE MyDatabase
And you would use it like so:
CODE
<?php
/* Creating a table */
$sql_tbl = "CREATE TABLE inventory
(
id INT IDENTITY(1,1) PRIMARY KEY,
product VARCHAR(50) UNIQUE,
quantity INT,
price DECIMAL(18,2)
)";
$query_tbl = mysql_query($sql_tbl)or mysql_error();
/* Creating a database */
$sql_db = "CREATE DATABASE MyDatabase";
$query_db = mysql_query($sql_db)or mysql_error();
?>
WCSchools is your friend!
http://www.w3schools.com/php/php_mysql_create.asp!!