MySQL Connection String Using PHP

akatiyaloces

New Member
I am trying to connect to the database that is hosted on my server through my local machine. my server has cPanel 11, and it is a typical shared server, powered by CentOS, PHP and MySQL installed. to be precise i am holding the reseller account in the same server. i want to access the database between different accounts or domains. in MySQL connection String i tried defining the domain name, and it isn't working. here is what i tried. \[code\]<?php$link = mysql_connect('mydomain.com', 'mysql_user', 'mysql_password');if (!$link) { die('Could not connect: ' . mysql_error());}echo 'Connected successfully';mysql_close($link);?>\[/code\]this is giving the following error\[code\]Warning: mysql_connect() [function.mysql-connect]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://bhatkalnews.com:3306) in C:\wamp\www\test\conn.php on line 4Warning: mysql_connect() [function.mysql-connect]: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\wamp\www\test\conn.php on line 4Fatal error: Maximum execution time of 60 seconds exceeded in C:\wamp\www\test\conn.php on line 4\[/code\]what do i have to define in connection string to make it work?
 
Back
Top