Jump to content

[SOLVED] Send information to different databases


aQ

Recommended Posts

Hello!

 

I am trying to post some info from a form, and into two databases. I have one of my mysql connections in a config file, and the other one in the file I am posting from.

 

It is something like this:

<?php
include(config.php);
//send something to the first database
mysql_query("INSERT INTO ....");

// And connect to the other db:
$xconnect = mysql_connect("x", "x", "x");
mysql_select_db("x", $xconnect);

// Then send info to the second db:
mysql_query("INSERT INTO ....");
?>

 

Is this a good way to do it? I don't feel that it works correct, I get some errors and such....

 

Can you help me?

from http://www.php.net/manual/en/function.mysql-connect.php

 

specify the link indentifier

 

<?php
$link1 = mysql_connect('example.com:3307', 'mysql_user', 'mysql_password');
$link2 = mysql_connect('example2.com:3307', 'mysql_user', 'mysql_password');
mysql_select_db('foo', $link1);
mysql_select_db('foo2', $link2);
?>

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.