how to do connectivity of 2 dbs in PHP script?

Answers were Sorted based on User's Feedback



how to do connectivity of 2 dbs in PHP script?..

Answer / lt

If you are trying to open multiple, separate MySQL
connections with the same MySQL user, password, and
hostname, you must set $new_link = TRUE to prevent
mysql_connect from using an existing connection.
The workaround is to require that the second MySQL
connection is new:

$db1 = mysql_connect($dbhost, $dbuser, $dbpass);
$rv = mysql_select_db($dbname1, $db1);
$db2 = mysql_connect($dbhost, $dbuser, $dbpass, TRUE);
$rv = mysql_select_db($dbname2, $db2);
Source: http://jp2.php.net/manual/en/function.mysql-connect.php
Message from: arithmetric at gmail dot com
26-Mar-2008 03:59

Is This Answer Correct ?    16 Yes 0 No

how to do connectivity of 2 dbs in PHP script?..

Answer / naveen das

Simple using two connection objects

Is This Answer Correct ?    3 Yes 0 No

how to do connectivity of 2 dbs in PHP script?..

Answer / manjunath

mysql_query("select db names");

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More PHP Interview Questions

How to get the IP address of the client/user in PHP?

0 Answers  


What is the different between cookies and session in php?

13 Answers  


What do you mean range() in php?

0 Answers  


What is difference between static and constant?

0 Answers  


Which variable declarations within a class is invalid in php?

0 Answers  






What are major variables in research?

0 Answers  


Why do we use javascript in php?

0 Answers  


what does this symbol mean in php?

0 Answers  


What is the purpose of break and continue statement?

0 Answers  


what is the importence of session.save_path in Php.ini file and wht changes u've to made before using sesssions in ur php program first time?

4 Answers  


how to send mail in php but mail should be send in inbox not in spam.....:(

2 Answers   ATS,


How to set cookies in PHP?

0 Answers  


Categories