Ver Mensaje Individual
  #14 (permalink)  
Antiguo 23/01/2009, 12:44
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
Respuesta: Ayuda con mi clase

Prueba hacer, así:
Código php:
Ver original
  1. private function Conectar()
  2. {
  3.     $this->con = mysql_connect(HOST, US, PW) or die( mysql_error() );
  4.     var_dump($this->con);
  5.         die('debug');
  6.     if ($this->con) {
  7.         mysql_select_db(DBASE, $this->con);
  8.     }
  9.     else {
  10.         echo mysql_error($this->con);
  11.     }
  12. }

Saludos