Re: [PHP-WIN] remote DB access

2002-01-10 Thread Pac mon
What version of PHP do you have? It sounds like the functions for mysql are loaded, but those functions have been built in since about 4.0 I believe. Include the information for both of the servers. > >Hello, > I have the code: > >#11 $db = mysql_connect("100.110.120.130", "root", "");

RE: [PHP-WIN] remote DB access

2002-01-10 Thread Ertan Tike
To: [EMAIL PROTECTED] Subject: [PHP-WIN] remote DB access Hello, I have the code: #11 $db = mysql_connect("100.110.120.130", "root", ""); #12 mysql_select_db("DBname",$db); #13 $result = mysql_query("select * from gmember where gmember_id =

[PHP-WIN] remote DB access

2002-01-10 Thread Paul Wallace
Hello, I have the code: #11 $db = mysql_connect("100.110.120.130", "root", ""); #12 mysql_select_db("DBname",$db); #13 $result = mysql_query("select * from gmember where gmember_id = '$login' and gmember_password = '$password'",$db); #14 $nrow=mysql_num_rows($result); #15