My friend who is hosting me just canceled his server and for some reason its halfway through the month and my sites are still up and everything. I can access ftp but now I can't login to cpanel. I need add some tables and what not to mysql. What should I do about this? Perhaps go to a new host and use there cpanel. I would like to see how long I can be on a server without paying for it you know. Thanks King
You probably want to back up your database and site before anything bad happens. If you can SSH, then the following command would of value: mysqldump -u username databaseName -p > dump.sql To create tables or anything else sql related you want to use the mysql command: mysql -u username database -p From the mysql prompt you can create a table: create table...