I'm making a OOP user system connecting to the database through PDO.
When I tried connecting I received this error "Error!: could not find driver"
Is PDO enabled? Is there something I have to do to enable it if it's disabled?
Thanks.
Edit:
To better understand what I'm asking, I'm using the following code:
CODE
$this->link = new PDO('mysql:dbname=$this->db_host', '$this->db_user', '$this->db_pass');