簡單的網頁登入程式

2022-08-09 04:30:15 字數 1662 閱讀 5388

在登入頁面輸入使用者名稱和密碼,是乙個html頁面

>無標題文件

title

>

head

>

<

body

>

<

form

action

="chuli.php"

method

="post"

>

<

div>

使用者名稱:

<

input

type

="text"

name

="uid"

/>

div>

<

div>

密碼:

<

input

type

="text"

name

="pwd"

/>

div>

<

div>

<

input

type

="submit"

value

="登入"

/>

div>

form

>

body

>

html

>

執行如下:

點選登入按鈕之後提交到chuili.php頁面進行處理

<?php 

$uid=$_post["uid"];

$pwd=$_post["pwd"];

//造鏈結物件

$db=new mysqli("localhost","root","123456","xinjian");

//判斷是否出錯

!mysqli_connect_error() or die("鏈結失敗");

//寫sql語句

$sql="select count(*) from login where username ='' and password=''";

//執行sql語句

$result =$db->query($sql

);

$attr=$result->fetch_row();

//var_dump($attr); 測試返回的是1是true,0是false

if($attr[0]==1)

else

//如果使用者名稱和密碼不對,返回的是0,提交給denglu.php,如果都對,返回1,提交給main.php頁面

簡單的網頁登入

建立資料庫檔案 原始碼 mysql u root p 登入資料庫 create database test 建立資料庫 use test 進入資料庫 create table account 建立資料表 id int 10 unsigned auto increment primary key,us...

爬蟲 登入網頁

usr bin env python coding utf 8 file loginmmvoip.py author lucasysfeng revision 2014 06 13 14 26 11 description 登入 獲取cookie 訪問任意url import cookielib i...

簡單的登入

一 資料庫,表如下圖,id自動增長 二 解決資源管理器的圖 三 登入的 using system using system.collections.generic using system.componentmodel using system.data using system.drawing u...