How do you connect to multiple MySQL databases on a single webpage?

后端 未结 11 2352
青春惊慌失措
青春惊慌失措 2020-11-22 05:06

I have information spread out across a few databases and want to put all the information onto one webpage using PHP. I was wondering how I can connect to multiple databases

11条回答
  •  日久生厌
    2020-11-22 05:28

    Instead of mysql_connect use mysqli_connect.

    mysqli is provide a functionality for connect multiple database at a time.

    $Db1 = new mysqli($hostname,$username,$password,$db_name1); 
    // this is connection 1 for DB 1
    
    $Db2 = new mysqli($hostname,$username,$password,$db_name2); 
    // this is connection 2 for DB 2
    

提交回复
热议问题