PDA

View Full Version : config MySQL seprating from php


epic
06-26-01, 05:29
i want to have my database server seprating from web server
how to make it?

MattR
06-26-01, 09:48
Simply change your mysql_connect( "localhost" .. );
to
mysql_connect( "192.168.1.1" .. );

or whatever the IP address of the MySQL server is.