
Originally Posted by
kbun
Server Host: 'www.example.com'
username: 'username'
password: 'password'
database: 'dbname'
Please help!

Some beginner configure tips for Cpanel based servers running MySQL:
Except in more rare cases where the database might be a remote server,
the server hostname to use in your scripts is almost always going to be
named "localhost" so use that instead of "www.example.com" above.
On cpanel systems, your database name and database username are both
prefixed with your main Cpanel account login so if your login name to
your cpanel account were "james" then the above example you wrote
would look like the following in your script settings:
Code:
Server Host: 'localhost'
username: 'james_username'
password: 'password'
database: 'james_dbname'
Hope that helps!
PS: Aside from the place in your control panel to setup MySQL databases,
there is also an interface called 'phpMyAdmin' that you can use to directly
access and work on the contents of your databases.