前端與後端互動之登入與註冊

2021-10-10 19:51:37 字數 2563 閱讀 8681

1. 登陸

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

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

>

>

documenttitle

>

head

>

>

action

="./dl.php"

>

登陸:type

="text"

name

="user"

>

>

密碼:type

="password"

name

="pwd"

>

>

>

登陸button

>

>

href

="./zc.html"

>

沒有賬號?請先註冊a

>

>

form

>

body

>

html

>

<?php

//呼叫資料庫連線

include

'./demo1.php'

;//獲取傳入的引數$u=

$_get

['user'];

$p=$_get

['pwd'];

//sql語句

$sql

="select * from aaaa where name='$u

' and pass='$p'";

//執行sql語句,並獲取結果集

$result

=mysqli_query

($link

,$sql);

//獲取結果集中的資料,並判斷if(

mysqli_fetch_row

($result))

else

?>

//封裝的資料庫

<?php

header

('content-type:text/html;charset=utf-8');

//連線資料庫

$link

=mysqli_connect

("localhost"

,"root",""

,"aaaaa");

//設定編碼

mysqli_set_charset

($link

,'utf8');

?>

2. 註冊

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

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

>

>

documenttitle

>

head

>

>

action

="./zc.php"

>

暱稱:type

="text"

name

="user"

>

>

密碼:type

="password"

name

="pwd"

>

>

>

提交button

>

>

form

>

body

>

html

>

<?php

//呼叫資料庫連線

include

'./demo1.php'

;//獲取傳入的引數$u=

$_get

['user'];

$p=$_get

['pwd'];

include

'./demo2.php'

;?>

//封裝的資料庫

<?php

header

('content-type:text/html;charset=utf-8');

//連線資料庫

$link

=mysqli_connect

("localhost"

,"root",""

,"aaaaa");

//設定編碼

mysqli_set_charset

($link

,'utf8');

?>

如何實現前端與後端資料互動

定義變數 var pay 舉例 var ispay false var lastpay 包年包月 設定 pay是指找到id為pay的要素,當對其執行 click 操作時就執行下面函式內容。pay on click button function console.log this attr id pa...

WPF註冊登入demo(C 與MYSQL互動)

ui此處省略 以下為c 程式 連線mysql資料庫需要引用動態鏈結庫,這裡用的是mysqldrivercs,另外還有mysql.ddata.dll也可以,這裡暫不展示 using mysqldrivercs using system using system.windows private void...

登入與註冊

2.企業角度,收集使用者資訊,建立企業使用者體系,來進行使用者分析和使用者運營等等,目的是為企業帶來更多的價值。3.響應國家網路實名制的要求。一般會驗證手機號或身份證號 手機號註冊 手機號註冊必不可少的三要素,手機號,驗證碼,密碼。完成這三個要素,可以在乙個頁面完成,也可以在多個頁面完成,當註冊流程...