当前位置:AIGC资讯 > 数据采集 > 正文

PHP项目:PHP链接数据

conn.php:

<?php
 $conn =mysql_connect("localhost", "root", "") or die("数据库链接错误");
 mysql_select_db("cyg", $conn);
 mysql_query("set names 'utf8'"); //使用utf-8中文编码;
 ?>

更新时间 2023-11-08