線上書籍

Home

[1062] PHP7入門

<?php //連線到資料庫 function link_db() { $db = new mysqli('localhost', 'root', '12345', 'reporter'); if ($db->connect_error) { die('無法連上資料庫:' . $db->connect_error); } $db->set_charset("utf8"); return $db; }