Hi I am new to PHP and MySQL I have created an application on LAMP and uploaded on net4.com a website hosting company. They are using phpMyAdmin in order to connect to the database which I am able to successfully the problem arises when I try to connect to database using php and query the database. I am using the mysql_connect() function which I have been using successfully on my local machine to connect to the remote database i.e.
$link = mysql_connect("118.67.248.12", "username", "password");
where "118.67.248.12" is the ip address of the server where my database resides, it throws the following error:
"1045Access denied for user 'Technosaar'@'118.67.248.190' (using password: YES)"
and if I use localhost" in place of "118.67.248.12" it throws the following error:
"2002No connection could be made because the target machine actively refused it."
I am already bugged up calling "net4" support guyz but the problem still persist Somebody please help me out, May Day May Day!
mysql_*, because it's being deprecated. Spend some time reading up onPDOhere or, if needs must, themysqli_*connection, which offers an API which is very similar to the one ofmysql_*– Elias Van Ootegem Nov 29 '12 at 17:16