Ver Mensaje Individual
  #7 (permalink)  
Antiguo 17/05/2011, 13:07
imbuche
 
Fecha de Ingreso: mayo-2011
Mensajes: 5
Antigüedad: 13 años
Puntos: 0
Respuesta: consulta bastante básica

<?php

$defconexion = true;

function conectarBD()
{
$host_conexion="localhost";
$login_conexion="horario";
$passwd_conexion="horario";
$db_conexion="topsql";

$conex = mysql_connect($host_conexion,$login_conexion,$pass wd_conexion);
echo mysql_error();

mysql_select_db($db_conexion);
echo mysql_error();

return $conex;
}
?>