php實現簡單登陸註冊頁面,php簡單登錄

本文目錄一覽:

php 製作簡單的註冊頁面 登陸頁面 然後驗證

user表 字段id int(11) username varchar(20) password varchar(32)

這3個字段就夠了。

html頁面 rel.html

form action=”rel.php” method=”post”

用戶名:input type=”text” name=”name”brbr

密碼:input type=”password” name=”password”brbr

input type=”submit” name=”submit” value=”註冊”

/form

rel.php

?php

//連接數據庫的代碼我就不寫了 你應該會吧?不會百度一下就好了

$submit = isset($_POST[‘submit’]) ? $_POST[‘submit’] : ”;

if($submit){//如果有表單提交

$username = isset($_POST[‘username’]) ? $_POST[‘username’] : ”;

$password = isset($_POST[‘password’]) ? $_POST[‘passowrd’] : ”;

$password = md5($password);

//先查詢數據庫是否存在該用戶名 註:用戶登陸就是等於這個查詢 不過查詢的時候多加一個password 就是WHERE `username` = ‘$username` AND `password` = ‘$password` 就OK拉。

$sqlSelect = “SELECT `username` FROM `user` WHERE `username` = ‘$username'”;

$querySelect = mysql_query($sqlSelect);

@$resultSelect = mysql_fetch_array($querySelect);

if($resultSelect[‘username’]){

echo “scriptalert(‘該用戶名已經存在。’);location.href=’rel.html’;/script”;

}else{//可以註冊。

$sqlInsert = “INSERT INTO `user`(`username`,`password`) VALUES(‘$username’,’$password’)”;

$queryInsert = mysql_query($sqlInsert);

if($queryInsert){//註冊成功

echo “scriptalert(‘恭喜,註冊成功。’);location.href=’這裡寫你註冊成功的頁面地址。’;/script”;

}else{

echo “scriptalert(‘對不起,註冊失敗。’);location.href=’rel.html’;/script”;

}

}

}

?

這就是個簡單的註冊頁面 登陸的話你就把驗證用戶是否存在的那個單拿出來就行了。。

純手打,望採納。

———————-

對啊 那句話就是注釋啊。

PHP怎麼實現登錄和註冊?

?php

if($_GET[‘user’] == ‘admin’  $_GET[‘pwd’] == ‘123’)

echo ‘登陸成功’;

?

form action=”” method=”get”/

table border=”0″ cellspacing=”0″ cellpadding=”0″ 

      tr

        td class=”fieldKey” width=”30%”用戶名:/td

        td class=”fieldValue” width=”100%”input type=”text” name=”user” //td

      /tr

      trtd height=”10″/td/tr

      tr

        td class=”fieldKey”密碼:/td

        td class=”fieldValue”input type=”password” name=”pwd” //td

      /tr

    /table

    input type=”submit” value=”登陸”/

/form

寫了一個超級簡單的,

使用php實現用戶註冊和登錄功能製作 !急求大神幫助!

1、需要建立一個數據表test

id int(10) primary key not null increment

name char(4) not null

pass char(10) not null

age int(2)

city char(5)

2、html頁面自己寫,用表單post傳參

3、.php頁面,處理接收到的參數,於數據庫裏面的用戶名和密碼比對,若果正確,用Js框,輸出歡迎頁面,如果不多返回到登陸頁面

這裡告訴你一個小技巧,很多時候我們都是拿用戶名和密碼一起比對,如果都正確則跳轉。這個地方其實我們需要防止sql注入攻擊,我們可以寫兩條語句,當用戶名正確,我們才執行下一條密碼比對語句,這樣可以有效防止sql的注入攻擊。

怎麼建立簡單的php登陸註冊頁面並連接數據庫

先會寫html的表單

然後會寫php接收表單。

然後會連接數據庫,查找數據庫對應字段。

判斷下

匹配跳轉到相應頁面,或者記錄session等。

用PHP做登陸註冊頁面

登錄頁:login.php

?php

include(“conn.php”);

$username=$_POST[‘name’];

$password=$_POST[‘password’];

$yanzheng=$_POST[‘yanzheng’];

if(isset($_POST[‘submit’]))

{

$sql=(“select username,password from member where username=’$username’ and password=’$password'”) or die(“sql語句執行失敗”);

//print_r($sql);

$ar=mysql_query($sql);

if($ar)

{

if($row=mysql_fetch_array($ar))

{

session_start();

if($_POST[“yanzheng”])

{

if($yanzheng!=$_session[pic]||$yanzheng==””)

{

echo “驗證碼輸入有誤”;

exit;

}

if($yanzheng==$_session[pic])

{

header(“location:index.php”);

}

}

}

else

{

echo “用戶名或密碼錯誤”;

}

}

}

?

form action=”login.php” method=”post”

table border=1 align=center width=500 height=300 bgColor=#DFFFDF bordercolor=#fffbec

tr

td colspan=2 align=center用戶登錄/td

/tr

tr

td用戶姓名:/td

tdinput type=”text” name=”name” id=”name”//td

/tr

tr

td用戶密碼:/td

tdinput type=”password” name=”password” id=”password”//td

/tr

tr

td驗證碼:/td

tdinput type=”text” name=”yanzheng” id=”yanzheng”/

img src=”yanzheng1.php” width=”50″ height=”30″/img

/td

/tr

tr

td colspan=3 align=center

input type=”submit” name=”submit” value=”登錄”/

input type=”reset” name=”reset” value=”重置”/

a href=”register.php”註冊/a

/td

/tr

/table

/form

註冊頁:register.php

?php

include(“conn.php”);

if(isset($_POST[‘submit’])$_POST[‘submit’]) {

if($_POST[‘username’]==”)

{

echo “用戶名不能為空”;

exit();

}

if($_POST[‘password’]==”)

{

echo “密碼不能為空”;

exit();

}

if($_POST[‘realpass’]!=$_POST[‘password’])

{

echo “兩次密碼輸入不一致”;

exit();

}

$sql=”insert into member(username,real_name,password,email,headimg) values(‘$_POST[username]’,’$_POST[username]’,’$_POST[password]’,’$_POST[email]’,”)”;

$ar=mysql_query($sql);

if($ar)

{

header(“location:index.php”);

}

else

{

echo mysql_error();

}

}

?

body

form action=”register.php” method=”post”

table border=1 align=center width=500

tr

td height=40 bgColor=#DFFFDF colspan=2會員註冊 [a href=”login.php”返回登錄頁/a]/td

/tr

tr

td height=40 bgColor=#fffbec 會員ID/td

tdinput type=”text” name=”username” id=”username”//td

/tr

tr

td height=40 bgColor=#fffbec密碼/td

tdinput type=”password” name=”password” id=”password”//td

/tr

tr

td height=40 bgColor=#fffbec確認密碼/td

td

input type=”password” name=”realpass” id=”realpass”/

/td

/tr

tr

td height=40 bgColor=#fffbecEMAIL/td

tdinput type=”text” name=”email” id=”email”/

/tr

tr

td height=40 bgColor=#fffbec/td

tdinput type=”submit” name=”submit” value=”註冊”/input type=”reset” value=”重置”/td

/tr

/table

/form

/body

主頁顯示:index.php

?php

include(“conn.php”);

function cutstr($str,$cutleng)

{

$str = $str; //要截取的字符串

$cutleng = $cutleng; //要截取的長度

$strleng = strlen($str); //字符串長度

if($cutleng$strleng)return $str;//字符串長度小於規定字數時,返回字符串本身

$notchinanum = 0; //初始不是漢字的字符數

for($i=0;$i$cutleng;$i++)

{

if(ord(substr($str,$i,1))=128)

{

$notchinanum++;

}

}

if(($cutleng%2==1)($notchinanum%2==0)) //如果要截取奇數個字符,所要截取長度範圍內的字符必須含奇數個非漢字,否則截取的長度加一

{

$cutleng++;

}

if(($cutleng%2==0)($notchinanum%2==1)) //如果要截取偶數個字符,所要截取長度範圍內的字符必須含偶數個非漢字,否則截取的長度加一

{

$cutleng++;

}

return substr($str,0,$cutleng);

}

?

html

head

script type=”text/javascript”

function All(e, itemName)

{

var aa = document.getElementsByName(itemName);

for (var i=0; iaa.length; i++)

aa[i].checked = e.checked; //得到那個總控的複選框的選中狀態

}

function Item(e, allName)

{

var all = document.getElementsByName(allName)[0];

if(!e.checked) all.checked = false;

else

{

var aa = document.getElementsByName(e.name);

for (var i=0; iaa.length; i++)

if(!aa[i].checked) return;

all.checked = true;

}

}

/script

/head

?php

include(“conn.php”);

if(isset($_POST[‘del’]))

{

$mm = $_POST[“selected”];

$id =implode(“,”,$mm);

$sql = “delete from forums where id in(“.$id.”)”;

//echo $sql;

$result=mysql_query($sql);

echo $result?”刪除成功”:”刪除失敗”;

}

?

table style=”BORDER-BOTTOM-WIDTH: 1px; BORDER-COLLAPSE: collapse” cellSpacing=0 cellPadding=0 width=600 align=center border=1 bordercolor=#ddddff

tr align=middle

td height=40 bgColor=#DFFFDF colspan=3論壇列表/td

/tr

tr

td colspan=3a href=”login.php” style=”float:right”[退出系統]/aa href=”add_forum.php” style=”float:right”[添加論壇]/a/td

td/td

/tr

tr align=middle

td height=40 bgColor=#DFFFDF width=80狀態/td

td height=40 bgColor=#DFFFDF論壇/td

td height=40 bgColor=#DFFFDF最後更新/td

/tr

?php

$sql=”select * from forums”;

$result=mysql_query($sql);

$num=mysql_num_rows($result);

if($num0)

{

while($row=mysql_fetch_array($result)){

?

tr align=middle

td bgColor=#fffbecinput type=”checkbox” name=”selected” value=”1″//td

td height=50 bgColor=#fffbec width=300

?php

echo “diva href=\”forums.php?F=”.$row[‘ID’].”\””.$row[‘forum_name’].”/a/div”;

echo cutstr($row[‘forum_description’],24);//最多顯示24個位元組,12個字,多餘部分用省略號代替

echo “……”;

?

/td

td height=50 bgColor=#fffbecdiv?php echo $row[‘last_post_time’].”by”.$row[‘last_post_author’]?/div/td

/tr

?php

}

}

else

{

echo “tr bgColor=#fffbectd colspan=3對不起,論壇尚在創建中……/td/tr”;

}

?

tr

td colspan=3 input type=”checkbox” name=”selected” value=”1″ onclick=”All(this,’selected’)”/全選/不全選/td

/tr

tr

tdinput type=”button” name=”del” id=”del” value=”刪除選中項”/

?php

?

/td

/tr

/table

/html

數據庫你就自己建,望採納~

php簡單網站的登錄和註冊怎麼寫

註冊:

用戶名 :手機號或者郵箱

密碼:規定6-16位字符或者6-12位,不能出現_、等字符,規定只能數字和英文字符組成

驗證碼:隨機圖片

ajax提交時驗證用戶名是否合法(郵箱或手機號驗證)。去掉首尾空白。判斷數據格式(過濾html標籤,防止sql注入)

判斷密碼格式和長度

判斷驗證碼正確

三者都正確。提交到後台處理:

查詢用戶名是否存在,如果存在,不能註冊,返回頁面。如果不存在則將密碼加密處理(md5或者哈希加密生成一段密文,然後輸入密碼拼接生成的密文存入數據庫更保險)

插入成功成功,返回登錄界面。

登錄:

和註冊一樣判斷用戶名。

提交到後台

後台可以用mysql_real_escape_string()函數對用戶名和密碼進行轉義,防止sql注入

密碼同樣道理加密。去數據庫查詢用戶名和密碼,返回成功,則將用戶id號和用戶名存入session里。跳轉頁面。

原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/248963.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
小藍的頭像小藍
上一篇 2024-12-12 13:30
下一篇 2024-12-12 13:30

相關推薦

  • PHP和Python哪個好找工作?

    PHP和Python都是非常流行的編程語言,它們被廣泛應用於不同領域的開發中。但是,在考慮擇業方向的時候,很多人都會有一個問題:PHP和Python哪個好找工作?這篇文章將從多個方…

    編程 2025-04-29
  • Python簡單數學計算

    本文將從多個方面介紹Python的簡單數學計算,包括基礎運算符、函數、庫以及實際應用場景。 一、基礎運算符 Python提供了基礎的算術運算符,包括加(+)、減(-)、乘(*)、除…

    編程 2025-04-29
  • Python滿天星代碼:讓編程變得更加簡單

    本文將從多個方面詳細闡述Python滿天星代碼,為大家介紹它的優點以及如何在編程中使用。無論是剛剛接觸編程還是資深程序員,都能從中獲得一定的收穫。 一、簡介 Python滿天星代碼…

    編程 2025-04-29
  • Python海龜代碼簡單畫圖

    本文將介紹如何使用Python的海龜庫進行簡單畫圖,並提供相關示例代碼。 一、基礎用法 使用Python的海龜庫,我們可以控制一個小海龜在窗口中移動,並利用它的「畫筆」在窗口中繪製…

    編程 2025-04-29
  • 打包後頁面空白的解決方案

    當我們在調試階段時,我們的app可能看起來完美無缺,但當我們進行打包時,在運行app時,我們可能會遇到白屏或空白的問題。在這篇文章中,我們將探討如何解決這種問題。 一、檢查文件路徑…

    編程 2025-04-29
  • PHP怎麼接幣

    想要在自己的網站或應用中接受比特幣等加密貨幣的支付,就需要對該加密貨幣擁有一定的了解,並使用對應的API進行開發。本文將從多個方面詳細闡述如何使用PHP接受加密貨幣的支付。 一、環…

    編程 2025-04-29
  • Python櫻花樹代碼簡單

    本文將對Python櫻花樹代碼進行詳細的闡述和講解,幫助讀者更好地理解該代碼的實現方法。 一、簡介 櫻花樹是一種圖形效果,它的實現方法比較簡單。Python中可以通過turtle這…

    編程 2025-04-28
  • 使用PHP foreach遍歷有相同屬性的值

    本篇文章將介紹如何使用PHP foreach遍歷具有相同屬性的值,並給出相應的代碼示例。 一、基礎概念 在講解如何使用PHP foreach遍歷有相同屬性的值之前,我們需要先了解幾…

    編程 2025-04-28
  • Python操作Web頁面

    本文將從多個方面詳細介紹Python操作Web頁面的技巧、方法和注意事項。 一、安裝必要的庫 在Python中操作Web頁面,需要用到一些第三方庫。 pip install req…

    編程 2025-04-28
  • Python大神作品:讓編程變得更加簡單

    Python作為一種高級的解釋性編程語言,一直被廣泛地運用於各個領域,從Web開發、遊戲開發到人工智能,Python都扮演着重要的角色。Python的代碼簡潔明了,易於閱讀和維護,…

    編程 2025-04-28

發表回復

登錄後才能評論