註冊登入介面作業

2021-10-04 20:59:05 字數 2036 閱讀 5146

網頁原始碼

index

<?php

session_start();

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

?>

register

<?php

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

?>

check

<?php  //登陸資訊驗證

include "headerfiles.php";

session_start();

if($_session["validcode"] != $_post['codenum'])

else

else

} else //登陸錯誤,若id或使用者名稱正確,記錄登陸錯誤次數

echo "";

} }?>

check2

<?php //註冊資訊驗證

include 'headerfiles.php';

@$user=$_post['user'];

@$pass=$_post['pass'];

@$confirm=$_post['confirm'];

$userlen= mb_strlen($user,'utf8');

if($pass!=$confirm)

elseif($userlen>7||$userlen<4)

else

?>

code

<?php //驗證碼實現

header("content-type:image/png");

session_start();

$code = "";

$arr = array();

for($i=0;$i<4;$i++) //四位數字驗證碼

$_session["validcode"] = $code; //用session儲存

$img = imagecreate(100,25);

$backcolor = imagecolorallocate($img,255,255,255);//將img物件進行著色,設定為背景顏色

imagefill($img,0,0,$backcolor);

for($i=0;$i<4;$i++)

imagepng($img);

imagedestroy($img);

?>

headfiles

<?php

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

$conn=mysqli_connect("localhost:3308","root","****","d1");

mysqli_query($conn,"set names utf8");

if(!$conn)

?>

c.css

@charset "utf-8";

body

.box

.box h2

.box .inputbox

.box .inputbox input

.box .inputbox label

.box .inputbox input:focus~label,

.box .inputbox input:valid~label

.box input[type="submit"]

.box input[type="button"]

.box img

登入註冊介面函式

from tkinter import from pymssql import import tkinter.messagebox as mb defsql1 self 用於查詢 有返回值 ip 127.0.0.1 username sa password lzyft1030 con connect...

登入介面註冊儲存過程

alter procedure dbo procregister loginid varchar 50 傳入引數 登入帳號 loginpwd varchar 15 傳入引數 登入密碼 asdeclare emailaddress varchar 20 預設郵箱字尾,以方便註冊 set emailad...

jmeter介面測試(登入 註冊)

jmeter 進行介面測試流程 下面舉例說明使用流程,有兩種引數傳遞的方式,我們以登陸 註冊分別舉例 1 先新增執行緒組,引數設定如圖 執行緒數 可以理解成登陸賬號的數量 迴圈次數 就是迴圈執行你設定的執行緒數 如圖表示 10秒內執行10個執行緒,迴圈2次,總共執行了20次 迴圈次數如果選擇永遠,程...