public function __construct()
{
try {
$this->db = new PDO('mysql:host='.$this->host.';dbname='.$this->dbname,$this->login,$this->password);
$this->db->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$this->db->exec("set names utf8");
}
catch (PDOException $e) {
echo "Ошибка " . $e->getMessage();
}
return $this->db;
}