I have a site in a server, and the data base in other server.
My site was connected with two differnt data bases at the same time without any problem, but when I change the server's data base I had a problem, my site did not recognice two conecctions.
The solution that i found was, set true on the parameter "new link" in mysql_connect function, as the same:
$link_web = mysql_connect($host_web,$user_web,$pass_web, true)
But i have a question about other possible solution.
Could i solve the problem, setted sql.safe-mode as 'on' in my php.ini? or is possible solve this problem whiht another way without change the source code?