using command promt with MYSQL & then PHPMYADMIN
ok, i have done this precudur in commpand promt with apache and MYSQLD running
cd c:\mysql\bin
mysqladmin create book_db
mysql
use mysql;
GRANT ALL ON book_db TO chris@localhost IDENTIFIED BY "******";
works fine, query ok in 0.06 seconds,
open up confic.inc.php and change a block of code so my user = chris pass=***** auth_type=config and only_db=book_DB
go to http://localhost/phpmyadmin/index.php page works, click on database page, no data base called book_db and the DB mysql has a - next to it and doesnt have any tables
so i do what foundation dreamwever MX (book) tells me that is
GRANT ALL ON book_db. TO chris@localhost IDENTIFIED BY "*****";
I get a1044 error saying access denined, so whats going wrong here
thanks if you can help