php mysql連線失敗是因為php高版本已經不再使用「mysql_connect()」來連接MySQL資料庫,其解決方法就是使用mysqli或PDO來取代「mysql_connect」並重新連接mysql即可。
推薦:《PHP教學》
##PHP無法連接MySQL失敗
php高版本不再使用mysql_connect()來連接MySQL資料庫了。<?php $con = mysql_connect("localhost","root","abc123"); if (!$con) { die('连接失败' . mysql_error()); } ?>
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in D:\Sian\Blog pages\demo.php on line 2
mysqli_connect() PDO::__construct()
以上是php mysql連線失敗怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!