I have set up a slave server for my master and i want to know if i need to connect to both servers via php or is the load balanced just connecting to the master?
//slave
$c2 = mysql_connect("10.100.27.10","<user>","<pass>")or die(mysql_error());
//master
$c =mysql_connect("10.100.27.99","<user>","<pass>")or die(mysql_error());
mysql_select_db("piksearch", $c2);
mysql_select_db("piksearch");