// データベースへの接続 // MySQL try { $dbh = new PDO('mysql:host=localhost;dbname=blog_app', 'dbuser001', 'dbpwd0001'); } catch (PDOExeption $e) { var_dump($e->getMessage()); exit; }
// 切断 $dbh = null;
PAGE TOP