Me encuentro tratando de conectar 2 bd por medio de php, pero no me sale, me gustaria su ayuda ya sea con un ejemplo u orientacion o documentacion de como hacerla de ntemano muchas gracias.
yo he hecho algo omo esto.
Código PHP:
session_start();
$aa=$_SESSION["a1"] = $_POST['a'];
$conexion = mysql_connect("localhost", "root","");
$bdpestu=mysql_select_db("prueba_estudiante", $conexion) or die("No me pude conectar a Prueba");
$sql=mysql_query('SELECT * FROM prueba_estudiante.datos_estudiate');
while ($row = mysql_fetch_assoc($sql))
{
$codigo=$row['Codigo'];
$nombre=$row['Nombre'];
$apellido=$row['Apellido'];
$email=$row['Email'];
$ciudad=$row['Ciudad'];
$pais=$row['Pais'];
}
mysql_close($conexion); //se supone que cerrar coneccion
$conexion = mysql_connect("localhost", "root","");
$bdmoodle=mysql_select_db("moodle", $conexion) or die("No me pude conectar ");
while ($row = mysql_fetch_assoc($sql))
{
$cac="INSERT INTO moodle.mdl_user (id , auth ,confirmed ,policyagreed ,deleted ,mnethostid ,username ,password ,idnumber ,firstname ,lastname ,email ,emailstop ,icq ,skype ,yahoo ,aim ,msn ,phone1 ,phone2 ,institution ,department ,address ,city ,country ,lang ,theme ,timezone ,firstaccess ,lastaccess ,lastlogin ,currentlogin ,lastip ,secret ,picture ,url ,description ,mailformat ,maildigest ,maildisplay ,htmleditor ,ajax ,autosubscribe ,trackforums ,timemodified ,trustbitmask ,imagealt ,screenreader) VALUES (NULL , 'manual', '1', '0', '0', '1', '$row['Codigo']', '[cf735486ada2306b54c26debafc8d5ac]', '', '$nombre', '$apellido', '$email', '0', '', '', '', '', '', '', '', '', '', '', '$ciudad', '$pais', 'es_utf8', '', '99', '0', '0', '0', '0', '', '', '0', '', NULL , '1', '0', '2', '1', '1', '1', '0', '0', '0', NULL , '0')";
}
mysql_query($cac);