Skip to: site menu | section menu | main content

dbservers.co.uk (beta)

free dbs for all...

Help

What is my mysql login info?

Log into the Control Panel, where it will be displayed. The usermame and password will be the same as your Control Panel/phpMyAdmin login.

How do I connect using the mysql command line client?

First find your login info as above, then use the command below.

mysql -h hostname -u user -ppassword

Then change to the correct database

\u databasename

How do I connect from a php script?

First find your login info as above, then use the command below.

mysql_connect("hostname","user","password");

Then change to the correct database

mysql_select_db("databasename");

How can I learn about SQL databases?

Take a look at these tutorials. If you want to learn how to interact with mySQL using PHP take a look here

I have a question not covered here

Send us a message!

Back to top