Exemple #1
0
 /**
  * синглтон соеденения с базой
  */
 static function getDbh()
 {
     if (self::$dbh == null) {
         try {
             $dbh = "mysql:host=localhost;dbname=users_data";
             self::$dbh = new Pdo($dbh, 'root', 'serj0531serj');
             self::$dbh->exec("SET NAMES utf8");
             return self::$dbh;
         } catch (PDOException $e) {
             echo $e->getMessage();
         }
     } else {
         return self::$dbh;
     }
 }