Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/08/2007, 09:26
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
Re: iniciando con php oop, problema con seleccionar base de datos

Perdon mi error.

Esto esta mal:
Código PHP:
mysql_select_db($basedatos,$this->enlace)or die(mysql_error()); 
Debe de ser asi:
Código PHP:
mysql_select_db($this->basedatos,$this->enlace)or die(mysql_error());