Hello,
I am trying to connect to a remote mysql server through php. Here's the
code:
mysql_connect(" my.hostname.edu ", "username", "password") or die
(mysql_error()) ;
mysql_select_db ("db_name") or die ("unable to select
db".mysql_error ());
$r1 = mysql_query('SE LECT * FROM table') ;
Using the mysql prompt on the remote server, the mysql -h -u -p works
just fine with the parameters i've specified here. According to the
user table I have the proper permissions. I just can't figure out what
could be preventing the connection here, although I am no expert...can
anyone help?!
BTW, I am using PHP 4.4.1 and mysql 5.0.
Thanks in advance...
I am trying to connect to a remote mysql server through php. Here's the
code:
mysql_connect(" my.hostname.edu ", "username", "password") or die
(mysql_error()) ;
mysql_select_db ("db_name") or die ("unable to select
db".mysql_error ());
$r1 = mysql_query('SE LECT * FROM table') ;
Using the mysql prompt on the remote server, the mysql -h -u -p works
just fine with the parameters i've specified here. According to the
user table I have the proper permissions. I just can't figure out what
could be preventing the connection here, although I am no expert...can
anyone help?!
BTW, I am using PHP 4.4.1 and mysql 5.0.
Thanks in advance...
Comment