コード例 #1
0
 private static function initiateConnection()
 {
     //        self::$conn = new mysqli('localhost', 'root', 'salam', 'newest');
     self::$conn = new mysqli('localhost', 'newest', 'OZqXiGU&]D', 'newest');
     if (self::$conn->connect_errno > 0) {
         die('Unable to connect to database [' . self::$conn->connect_error . ']');
         return false;
     }
     return true;
 }