首先我們建立一個conn.php 的檔案
程式碼如下:
<?php header("Content-type: text/html; charset=utf-8");//设置编码 $con = mysql_connect("localhost","root","root") or die("数据库连接失败"); mysql_select_db('login') or die("指定的数据库不能打开"); mysql_query("set names utf8");//设置数据库的字符集 ?>
首先我們先設定一個字元編碼,當這個檔案中有中文時,不會出現亂碼
然後去連結資料庫
localhost 伺服器 root 使用者名稱 root 密碼
#如果你的伺服器是127.1.1.1,那麼你就可以在
如果你的伺服器是127.1.1.1,那麼你就可以在
$con = mysql_connect("127.1.1.1","用戶名","密碼") or die("資料庫連線失敗");