problem adding user to msql
i get this when i add a user to a database
Connection StringsPerl $dbh = DBI->connect("DBI:mysql:sherrut5_shop:remotemysqlhost" ,"_","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("remotemysqlhost", "_", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("_");
how can i fix this?
i left the user name out on purpose
|