Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/02/2014, 18:43
lolainas
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: problema clase abstract PDO no conecta

Código PHP:
Ver original
  1. class Database extends PDO {
  2.  
  3.     function __construct($driver, $host, $name, $user, $pass = null, array $opt = []) {
  4.         parent::__construct("$driver:host=$host;dbname=$name;", $user, $pass, $opt);
  5.     }
  6.  
  7. }
  8.  
  9. $link = new Database('mysql', 'localhost', 'base_de_datos', 'root');