云计算课程大作业
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.
 
 

12 lines
238 B

<?php
//链接数据库
$conn = mysqli_connect("localhost", "root", null, "attendance");
//判断错误函数
if(!$conn){
die('连接Mysql失败:'.mysqli_connect_error());
}
//设定字符集编码
mysqli_set_charset($conn, 'utf8');
?>