PHP連線資料庫

2021-10-03 18:45:09 字數 1519 閱讀 9830

記錄一下第一次使用php連線資料庫

html:

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

>

documenttitle

>

src=

"jquery-1.12.4.js"

>

script

>

src=

"index.js"

>

script

>

head

>

>

>

賬號:type

="text"

id="txt"

>

p>

>

密碼:type

="text"

id="pwd"

>

p>

>

"btn"

>

提交button

>

p>

body

>

html

>

js
$

(function()

, success:

function

(res)

else

if($res.infocode ==1)

else}}

)})}

)

php
<?php

// 獲取使用者輸入資訊

$username

=$_post

["username"];

$password

=$_post

["password"];

// 連線資料庫

$link

=mysqli_connect

('localhost'

,'root'

,'123456'

,'logintext');

// 建立輸出內容

$success=[

];if(

$link

)// 定義乙個變數判斷是否查詢到結果

$flag=0

;// 獲得每一條資料後判斷輸入內容是否存在於資料庫中

for($j=

0;$j<

count

($info);

$j++)}

}if($flag==0

)}else

}else

echo

json_encode

($success

);

php連線資料庫

create table message id tinyint 1 not null auto increment,user varchar 25 not null,title varchar 50 not null,content tinytext not null,lastdate date n...

php連線資料庫

天貓內部優惠券 設定資料庫變數 db host localhost 資料庫主機名稱,一般都為localhost db user root 資料庫使用者帳號,根據個人情況而定 db passw 資料庫使用者密碼,根據個人情況而定 db name test 資料庫具體名稱,以剛才建立的資料庫為準 連線資...

PHP連線資料庫

php連線資料庫函式 mysql connect 開啟mysql連線 mysql select db 開啟乙個資料庫 和or die 隱藏錯誤和條件顯示 mysql connect 主機 使用者名稱 密碼 mysql select db 開啟資料庫 鏈結標示符 如果不是特宣告連線標示符,則預設為是上...