When you create your MySQL database, first you need create a database by giving it a name. Then you create a user by entering a username and password. For best results keep your database name, database username, and database password at no fewer than 6 and no more than 7 letters or numbers. Then you make sure that you have added the user to the database.
In your script, your database name and your database username must be prefaced by your hosting account username_. Your password, however, stands alone without any prefaces.
For example: If your hosting account username is "blue5", your database name is "testdb", your database username is "dbuser", and your database password is "passwd", this is how you need to put them in your script:
database server should be: localhost
database name should be written as: blue5_testdb
database username should be written as: blue5_dbuser
database password should be written simply as: passwd
|