I keep getting this error, and I'm not really sure why this isn't working here.

I'm trying to create a database with PHP and it's returning the following error:

Error creating database: Access denied for user 'scriptcooke'@'10.%' to database 'my_db'

I believe I have the correct credentials, but what does @10.% even mean?

NOTE: I'm trying to use the w3schools example here: http://www.w3schools.com/php/php_mysql_create.asp

link|improve this question

There are also mysql account permissions for CREATE TABLE actions. That account doesn't have them. – mario Aug 21 '11 at 2:51
feedback

2 Answers

up vote 1 down vote accepted

@10.% is the field for the source host in the user definition.

The problem is: You don't have the permissions to create a new database. The user you are using may only use his own database;

link|improve this answer
feedback

The 10. Refers to the subnet's IP's first octet. In English, it's referring to the network "portion" that the user is connecting from. Try @localhost or @.*

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.