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

后端 未结 11 2422
青春惊慌失措
青春惊慌失措 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:51

    I just made my life simple:

    CREATE VIEW another_table AS SELECT * FROM another_database.another_table;
    

    hope it is helpful... cheers...

提交回复
热议问题