本文目錄一覽:
用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中的curl模擬登陸
在我的博客《PHP cURL模擬登錄與採集分析過程詳解》做了詳細的介紹,步驟有:
1. 訪問目標網站
2. 打開Firebug(快捷鍵:F12)
3. 清除【Cookie】
4. 重新訪問目標網站
5. 設置【網絡】為[保持]狀態
6. 填寫表單,提交登錄請求
7. 利用【網絡】,分析提交信息
8. 複製請求的cURL命令
9. 分析命令傳輸的參數與Cookie和前面頁面響應內容的關聯性
10. 如果遇到Cookie和響應內容都無法查找到的參數,Ctrl+S保存當前頁面為全部,利用文本搜索該參數的位置
11. 利用cURL命令組裝模擬登錄程序
詳情請參考博客內容:
如何通過php程序模擬用戶登錄
模擬用戶可以用php的curl的post,例如
$url = “”;
$post_data = array (“username” = “uzuzuz”,”password” = “12345”);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// post數據
curl_setopt($ch, CURLOPT_POST, 1);
// post的變量
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
//打印獲得的數據
print_r($output);
具體參考:
使用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的注入攻擊。
原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/236401.html