本文目錄一覽:
如何用php做個登陸界面?
你可以做一個簡單的例如你只有用戶名和密碼即可那麼你先在資料庫(以mysql為例)中建表例如叫做user 欄位為 id name pass分別是編號、用戶名、密碼長度分別是int(8) a_t(自動編號) 主鍵,varchar(50) ,varchar(50) 你可以添加一個測試數據 例如 1,admin,admin//說明密碼這裡不說加密的問題,用明文實現 登錄頁面的代碼:login.phphtmlheadtitle用戶登錄/title/headbodyform action=”checklogin.php” name=”loginform” method=”post”用戶名:input name=”name” type=”text”br密 碼:input name=”password” type=”password”brinput value=”登錄” type=”submit”br/form/body/html checklogin.php代碼(檢測登錄): $name=$_POST[name];$pass=$_POST[password];session_start();//這個可以維持登錄狀態,可以參照session的使用
//登錄檢查函數 function login_state($uid,$user_shell){ $sql=”SELECT * FROM `user` WHERE `name`=’$name'”;
$query=@mysql_query($sql) or die(mysql_error());
$us=is_array($row=@mysql_fetch_array($query));
$user_shell=$us ? $user_shell==$row[password]:FALSE;
if($user_shell){ echo “scriptalert(‘登錄成功’);/script”;
return $row;
}else{
echo “scriptalert(‘您暫時不能瀏覽該頁面,請先登錄’);location.href=’login.php’;/script”;
} }login_state($name,$password);?
希望可以幫到您,如果還有問題可以聯繫2458285853
用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做一個用戶登錄頁面
index.html登錄頁面代碼如下:
!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “”
html xmlns=””
head
meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ /
title登錄示例/title
/head
body
form id=”forms” name=”forms” method=”post” action=”loginchk.php”
用戶名:input type=”text” id=”uname” name=”uname” value=””/br/
密碼:input type=”password” id=”upass” name=”upass” value=””/br/
input type=”submit” id=”loginbtn” value=”立即登錄”/
input type=”reset” id=”resetbtn” value=”重新填寫”/
/form
/body
/html
loginchk.php 的PHP程序代碼如下:
?php
$uname=trim($_REQUEST[“uname”]);
$upass=trim($_REQUEST[“upass”]);
if($uname==”admin”$upass==”admin”)
{
echo “登錄成功”;
}
else
{
echo “登錄失敗,a href=’index.html’重新登錄/a”;
}
?
以上只是一個簡單示例,真正的開始,需要考到很多因素,比如說登錄前有效性檢查,加入登錄驗證碼,程序需要連接資料庫進行用戶匹配等。
希望對你有幫助 。
如果使用資料庫進行進行匹配的話,PHP程序可以這樣改進一下。
?php
$uname=trim($_REQUEST[“uname”]);
$upass=trim($_REQUEST[“upass”]);
$con = mysql_connect(“localhost”,”root”,”root”);
mysql_select_db(“dbname”, $con);
$result = mysql_query(“select * from dusers where uname=’$uname’ and upass=’$upass'”);
$rs = mysql_fetch_array($result);
if($rs)
{
echo “登錄成功”;
}
else
{
echo “登錄失敗,a href=’index.html’重新登錄/a”;
}
?
不過你需要連接到你自己的指定的資料庫和數據表。
php登錄頁面完整代碼連接資料庫
創建conn.php,連接資料庫。
$dns = ‘mysql:host=127.0.0.1;dbname=test’;
$username = ‘root’;
$password = ‘root’;
// 1.連接資料庫,創建PDO對象
$pdo = new PDO($dns,$username,$password);
創建login.html,登陸頁面。
用戶名
密 碼
創建login.php,驗證賬號密碼。
header(“Content-Type: text/html; charset=utf8”);
if(!isset($_POST[“submit”])){
exit(“錯誤執行”);
}//檢測是否有submit操作
include(‘conn.php’);//鏈接資料庫
$name = $_POST[‘name’];//post獲得用戶名表單值
$pwd = sha1($_POST[‘password’]);//post獲得用戶密碼單值
if ($name $pwd){//如果用戶名和密碼都不為空
$sql = “select * from user where username = ‘$name’ and password=’$pwd'”;//檢測資料庫是否有對應的username和password的sql
$stmt = $pdo-prepare($sql);
$stmt-execute();
if($stmt-fetch(PDO::FETCH_BOUND)){//0 false 1 true
header(“refresh:0;url=welcome.html”);//如果成功跳轉至welcome.html頁面
exit;
}else{
echo “用戶名或密碼錯誤”;
echo “
setTimeout(function(){window.location.href=’login.html’;},1000);
“;//如果錯誤使用js 1秒後跳轉到登錄頁面重試;
}
}else{//如果用戶名或密碼有空
echo “表單填寫不完整”;
echo “
setTimeout(function(){window.location.href=’login.html’;},1000);
“;
//如果錯誤使用js 1秒後跳轉到登錄頁面重試;
}
$pdo = null;
創建signup.html,註冊頁面
用戶名:
密 碼:
創建signup.php
header(“Content-Type: text/html; charset=utf8”);
if(!isset($_POST[‘submit’])){
exit(“錯誤執行”);
}//判斷是否有submit操作
$name=$_POST[‘name’];//post獲取表單里的name
$pwd = sha1($_POST[‘password’]);//post獲取表單里的password
include(‘conn.php’);//鏈接資料庫
$sql=”insert into user(id,username,password) values (null,’$name’,’$pwd’)”;//向資料庫插入表單傳來的值的sql
$stmt = $pdo-prepare($sql);
$stmt-execute();
$stmt-fetch(PDO::FETCH_BOUND);
if (!$stmt){
die(‘Error: ‘ . $stmt-getMessage());//如果sql執行失敗輸出錯誤
}else{
echo “註冊成功”;//成功輸出註冊成功
}
$pdo = null;//關閉資料庫
原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-tw/n/309129.html