コード例 #1
0
ファイル: dbconnect.php プロジェクト: rtpj26/museo
        $this->pass = $pass;
        $this->connected = false;
    }
    function connect()
    {
        try {
            $this->db_connect = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db, $this->user, $this->pass);
            $this->connected = true;
            return true;
        } catch (Exception $e) {
            $this->connected = false;
            return false;
        }
    }
    function isConnected()
    {
        return $this->connected;
    }
    function get_db_connect()
    {
        return $this->db_connect;
    }
}
$host = "localhost";
$user = "******";
$pass = "";
$db = "museo";
$db_obj = new database_object($host, $db, $user, $pass);
if (!$db_obj->isConnected()) {
    $db_obj->connect();
}