You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
366 B

<?php
date_default_timezone_set("Asia/Taipei");
$host = '127.0.0.1:3306';
$dbuser ='root';
$dbpassword = '';
$dbname = 'appwms0921-2';
$link = mysqli_connect($host,$dbuser,$dbpassword,$dbname);
if($link){
mysqli_query($link,'SET NAMES utf8');
// echo "正確連接資料庫";
}
else {
echo "不正確連接資料庫</br>" . mysqli_connect_error();
}
?>