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?

Link to comment
Share on other sites

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);
?>

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.