Search results

  1. D

    can not connect to database

    how to give privileges to user. there is no privileges tab in phpMyAdmin
  2. D

    can not connect to database

    thanks. I tried your code. But I got following error. cannot select DB. Reason: Access denied for user 'dsk123_test'@'10.33.248.%' to database 'dsk123_dsk' what to do.
  3. D

    can not connect to database

    i tried to connect database from my web page with following code. $host=\"localhost\"; $username=\"dsk123_test\"; $password=\"789\"; $db_name=\"dsk123_dsk\"; mysql_connect(\"$host\", \"$username\", \"$password\")or die(\"cannot connect to server\"); echo \"Host - Connected - OK...
  4. D

    Connect MySql Databse

    I created a my sql database. Now I want to connect to it from my website. I tried it with the follwing details. $host=\"69.175.121.66\"; // Host name $username=\"user\"; // Mysql username $password=\"*****\"; // Mysql password $db_name=\"dsk\"; // Database name But it\'s generate an...
Top