操作步驟:
1.連線資料庫;
2.sql語句;
3.執行查詢4.在頁面上遍歷展示<?php?//mysql主機地址$host?=?"localhost";//mysql使用者名稱$user?=?"root";//mysql登入密碼$pswd?=?"root";//連結資料庫$conn?=?mysql_connect($host,$user,$pswd);if(!$conn){????die("資料庫連線失敗!");}//設定資料庫操作編碼,防止亂碼mysql_query("set?names?"utf8"");?//選擇要操作的資料庫mysql_select_db("testdb");//sql語句$sql?=?"select?*?from?uses";//執行sql?$result=mysql_query($sql);??//迴圈遍歷然後展示while($row?=?mysql_fetch_array($result)){????echo?$row[0]."==";????echo?$row[1]."==";????echo?$row[2]."<br/>";}?>
操作步驟:
1.連線資料庫;
2.sql語句;
3.執行查詢4.在頁面上遍歷展示<?php?//mysql主機地址$host?=?"localhost";//mysql使用者名稱$user?=?"root";//mysql登入密碼$pswd?=?"root";//連結資料庫$conn?=?mysql_connect($host,$user,$pswd);if(!$conn){????die("資料庫連線失敗!");}//設定資料庫操作編碼,防止亂碼mysql_query("set?names?"utf8"");?//選擇要操作的資料庫mysql_select_db("testdb");//sql語句$sql?=?"select?*?from?uses";//執行sql?$result=mysql_query($sql);??//迴圈遍歷然後展示while($row?=?mysql_fetch_array($result)){????echo?$row[0]."==";????echo?$row[1]."==";????echo?$row[2]."<br/>";}?>