login.php
<?php
//接收 errno的值
if(!empty($_get['errno']))
} ?>
loginprocess.php
<?php
//接受使用者資料
$id=$_post['id'];
//2.密碼
$password=$_post['password'];
//到資料庫去驗證,mysql擴充套件庫,mysqli擴充套件庫
//1。得到鏈結
//1.得到連線
$conn=mysql_connect("localhost","root","123");
if(!$conn)
//設定訪問資料庫的編碼
mysql_query("set names utf8",$conn) or die(mysql_errno());
//選擇資料庫
mysql_select_db("project1",$conn) or die(mysql_errno());
//傳送sql語句,驗證
//防止sql注入攻擊
//變化驗證邏輯 mysqli 預處理
$sql="select password,name from admin where id=$id";
//1.通過輸入的id來獲取資料庫的密碼,然後再和輸入的密碼比對.
$res=mysql_query($sql,$conn);
if($row=mysql_fetch_assoc($res))
}header("location: login.php?errno=1");
exit();
//關閉資源
mysql_free_result($res);
mysql_close($conn);
/* //簡單驗證,先不鏈結資料庫
if($id=="100"&&$password=="1234")
else
*/
?>
emp.php
<?php
echo"6666666";
學習筆記1
struct test test int x void fun class test1 test1 int x void fun int main void test1 a 行1 a.fun 行2 test1 b 行3 b.fun 行4 test c 行5 c.fun 行6 test d 行7 d....
學習筆記1
1 字串原地逆序 使用臨時變數 void reverse string s 5 求平均值 避免溢位 int f int x,int y 6 楊氏矩陣 bool young int a m n int x return false 7 十進位制轉十六進製制 string decimaltohexade...
學習筆記1
第二單元 linux的基本操作 1.改變使用者的密碼 passwd命令 注 a.只有root使用者可以修改其他使用者的密碼。普通使用者只能修改自己的密碼,且密碼必須設定地較為複雜,否則修改不成功 b.若執行passwd命令時後面不加使用者名稱,表示的是修改當前使用者的密碼。2.系統使用者的分類 注 ...