PHP/MySQL-mysql_select_db question

Started by
1 comment, last by sathenzar 18 years, 7 months ago
Hey everyone, I just was wondering, I ran into this problem. I have two databases I need to talk to in one script. So normally you call the mysql_connect(...). Then I get into this problem. Can I still run my SQL queries even though I call the mysql_select_db function twice? Like in the example below?

<?php
//db connected...
mysql_select_db( "fdl_user" );
mysql_select_db( "fdli_user" );

$q = mysql_query( "SELECT * FROM ...." );
?>
will I still be able to talk to both of the databases? Thanks in advance.
Advertisement
You'll need to select the db each time before you query to make sure you're querying the db you intend.
ok, thanks. that's what I wanted to know. :)

This topic is closed to new replies.

Advertisement