PHP同時操作多個MySQL連線

y0umer發表於2013-01-22
<?php
$con_1 = mysql_connect(`localhost`,`root`,``)or die("<font color=red>不能連線資料庫!</font>");
mysql_select_db(`gameupload`,$con_1);
$con_2 = mysql_connect(`localhost`,`root`,``)or die("<font color=red>不能連線資料庫!</font>");
mysql_select_db(`blog4`,$con_2);
$sql = "select * from user limit 2";
$res = mysql_query($sql,$con_1);
echo mysql_error();
while($row = mysql_fetch_assoc($res)){
	print_r($row);
}
?>

執行結果:只顯示gameupload裡的user內容。

-------------------------------

<?php
$con_1 = mysql_connect(`localhost`,`root`,``)or die("<font color=red>不能連線資料庫!</font>");
mysql_select_db(`gameupload`,$con_1);
$con_2 = mysql_connect(`127.0.0.1`,`root`,``)or die("<font color=red>不能連線資料庫!</font>");
mysql_select_db(`blog4`,$con_2);
$sql = "select * from user limit 2";
$res = mysql_query($sql,$con_1);
echo mysql_error();
while($row = mysql_fetch_assoc($res)){
	print_r($row);
}
?>

執行結果:顯示blog4裡的user內容。

------------------

參考來源:http://blog.csdn.net/iamtrooper/article/details/4139209


相關文章