Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/11/2006, 10:15
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Usa asi para ver que erro te dice el servidor:
Código PHP:
function Connect()
{
    
$this->conn mysql_connect(HOSTUSERPASS);
    if (!
$this->conn) {
        
$this->msg "Error al conectar al servidor" mysql_error();
        return 
0;
    }
    else {
        
$this->seldb mysql_select_db(DBNAME$this->conn);
        if (!
$this->seldb) {
            
$this->msg "No se pudo seleccionar la base de datos." mysql_error();
            return 
0;
        }
        else {
            return 
$this->conn;
        }
    }