Ver Mensaje Individual
  #30 (permalink)  
Antiguo 08/06/2011, 13:25
putapunker
 
Fecha de Ingreso: junio-2010
Mensajes: 70
Antigüedad: 13 años, 10 meses
Puntos: 1
Respuesta: Problemilla con iniciar sesion

esto es conexion. php

<?php

$link = mysql_connect ("localhost","root","c@r@c@5");

if(!$link) {



die ("error al intentar conectar : ". mysql_error());

}

else {



$db_link = mysql_select_db ("gaei",$link);

}





if (!$db_link) {



die ("Error al intentar seleeccionar la BD ". mysql_error());



}



?>