PHP 運算元據庫相關

2021-09-21 02:12:14 字數 555 閱讀 3044

1、php連線資料庫

a:連線

$con=mysqli_connect('位址','賬號','密碼','資料庫');

b:編碼格式

mysqli_query($con,'set names utf8');

c: sql

d:傳送sql語句

mysqli_query($con,$sql);

e:關閉資料  mysqli_close($con);

2、sql語句

1.查詢: "select [資訊] from 表名  where  條件"

2.插入:  "insert into 表名(id,...) values(id,....)"

3.修改:  "update 表名 set 新值  where  舊值";

4.刪除:  "delete from 表名 where id=1";

"delete from 表名"刪除全部

3、格式

php陣列 轉json字串格式  json_encode(陣列)

js:字串--json格式:json.parse()

php 運算元據庫

本例是用php連線乙個mysql資料庫操作的演示,實現連線開啟乙個庫,並讀取資料的基本功能。資料庫名稱為 dbname 表名為 person 分別有7個字段 id userid age tel email address 伺服器 資料庫編碼 均採用 utf 8 mysql query set nam...

PHP運算元據庫

很簡單,只需要幾行 就搞定!1.連線資料庫 pdo new pdo mysql host localhost dbname 資料庫名 使用者名稱 密碼 2.準備sql語句 result pdo prepare select from user where id 3.執行哦sql語句 result e...

PHP運算元據庫

1.1.1.連線資料庫基本步驟 1.連線資料庫 2.準備sql語句 3.執行sql語句 4.獲取執行的結果並分析 5.關閉資料庫 1.1.2.運算元據庫常用api mysqli connect ip,使用者名稱,密碼,資料庫名 連線資料庫 mysqli query link,sql 執行sql語句 ...