Z2021-09-18 14:32:07
可以參考下方
<?php$con = mysql_connect("localhost","root","password");$select_db = mysql_select_db('test');if (!$select_db) { die("could not connect to the db:\n" . mysql_error());}//查詢碼$sql = "select * from db_table";$res = mysql_query($sql);if (!$res) { die("could get the res:\n" . mysql_error());}while ($row = mysql_fetch_assoc($res)) { print_r($row);}//查詢碼//關閉資料庫連線至sql_close($mysql_close($mysql_close($mysql_close($mysql_close)($mysql_close($mysql_close($mysql_close); con);?>
yntdx2021-09-08 09:49:10
其實用小鳥雲端伺服器部署PHP環境,連接MYSQL資料庫有幾種常用的辦法,這裡就整理了一種最普通的:$mysql_server="localhost";$mysql_username="資料庫使用者名稱";$ mysql_password="資料庫密碼";$mysql_database="資料庫名稱";//建立資料庫連結//選擇某個資料庫//執行MySQL語句//提取資料