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
351 B
16 lines
351 B
<?php
|
|
date_default_timezone_set("Asia/Taipei");
|
|
$host = 'db-104.coowo.com:3306';
|
|
$dbuser ='masadaroot';
|
|
$dbpassword = 'x6h5E5p#u8y';
|
|
$dbname = 'appwms';
|
|
|
|
$link = mysqli_connect($host,$dbuser,$dbpassword,$dbname);
|
|
if($link){
|
|
mysqli_query($link,'SET NAMES utf8');
|
|
}
|
|
else {
|
|
echo "不正確連接資料庫</br>" . mysqli_connect_error();
|
|
}
|
|
|
|
?>
|
|
|