Forum Moderators: coopster
So you likely have two choices:
If this is for development purposes, you should install the DB server on your computer and use that.
If you want real-time access to the db, you'll need to connect to it. Popular ways are
- log in via SSH and start the default mysql client
- install phpMyAdmin and use that to connect
- build an interface using PHP or something like it.
Usually, both the default client and phpMyAdmin will be installed on a shared web server somewhere. phpMyAdmin is great for a quick little thing when you have your browser open already, but if you need to do a lot of work, it is frustratingly slow. The default client is super fast, but you need to know some SQL to do much of anything with it.
Depending on which way you want to go, we can offer additional help.
Tom