Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can I retrieve values from one database server and
store them in other database server using PHP?

Answer Posted / mahesh

$db1 = mysql_connect(”host”,”user”,”pwd”)
mysql_select_db(”db1name;, $db1);
$res1 = mysql_query(”query”,$db1);


$db2 = mysql_connect(”host”,”user”,”pwd”, true)
mysql_select_db(”db2name;, $db2);
$res2 = mysql_query(”query”,$db2);

So mysql_connect has another optional boolean parameter
which indicates whether a link will be created or not. as we
connect to the $db2 with this optional parameter set to
‘true’, so both link will remain live.

now the following query will execute successfully.
$res3 = mysql_query(”query”,$db1);

Is This Answer Correct ?    8 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between explode () and split () functions in php?

1126


How to remove duplicate values from array using php?

1030


Differentiate between php5 and php7?

1084


What is a null coalescing operator in php7?

1157


How can we check the value of a given variable is a number?

1083


Explain about PHP filter and why it should be used?

948


Tell me how is it possible to know the number of rows returned in result set?

1091


How to get no. of rows using MYSQL function?

1098


What is difference between count or sizeof function in php?

994


What software is required to run php?

1014


What is inheritance in php with example?

1017


What are the different tables(engine) present in mysql, which one is default?

1032


How to Pass JSON Data in a URL using CURL in PHP?

1069


Is null function in php?

1022


How to increase the execution time of a PHP script?

1054