Tema: no anda!!
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/06/2007, 05:16
Avatar de Yranac
Yranac
 
Fecha de Ingreso: junio-2007
Mensajes: 125
Antigüedad: 17 años, 5 meses
Puntos: 1
Re: no anda!!

A ver, tu pones
Código PHP:
$c conexion(); 
Pero donde declaraste la función te falta devolver el identificador de la conexion
Código PHP:
<?
    
function conexion(){
    
$host "localhost"
    
$username "nicolas76\$nico"
    
$password "mipass"
    
$database "nicolas76\$midatabase"


   
$c=mysql_connect($host$username$password);
   if(!
$c){
       die(
"ERROR AL CONECTAR AL SERVIDOR");
       }
       
$db=mysql_select_db($database$c);
       if(!
$db){die("ERROR AL CONCTARSE A LA BASE DE DATOS");}

//TODO OK
return $c;
}
?>