Will this works, or should I disconnect first?
<?php
mysql_connect('localhost','root','');
mysql_select_db('DB1');
//Code...
//Now I need to change of db
mysql_select_db('DB2');
//More code...
I know mysql() is being deprecated, but I'm working with a old (not so much) system. Thanks!