程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> [轉]php用戶登錄代碼

[轉]php用戶登錄代碼

編輯:關於PHP編程

一款講得非常詳細的登錄代碼,對php入門者有很大的幫助,有需要的朋友可以免費查看。

效果圖。

index.php教程

 代碼如下 復制代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<title>系統登錄</title>
<link href="css教程.css" rel="stylesheet" type="text/css" />
</head>

<body>

<div id="box">
  <div id="denglu">
  <div id="pic">&nbsp;系統後台登陸</div>
    <form action="check.php" method="post">
      <p>用戶名:
        <input type="text" name="name" id="name" />
      <span class="must">*</span></p>
      <p>密&nbsp;&nbsp;碼:
        <input name="password" type="password" id="password" />
      <span class="must">*</span></p>
      <p>驗證碼:
        <input name="check" type="text" id="check" size="8" />
        <img src="piccheck.php" /> <span class="must">*</span></p>
      <p class="form_button">
        <input type="submit" name="sub" id="sub" value="登陸" />
        <input type="reset" name="unsub" id="unsub" value="取消" />
      </p>
    </form>
  </div>
</div>
</body>
</html>

數據庫教程連接 connect.php

 代碼如下 復制代碼

<?php
 $connect=mysql教程_connect("localhost","root","")or die("服務器連接失敗");
 mysql_select_db("test",$connect)or die("沒有建立相應的數據庫");
$sql="select * from admin";
?>

圖片驗證碼 piccheck.php

 代碼如下 復制代碼 <?php
/*
 * Created on 2011-8-10
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclips教程e - PHP - Code Templates
 */
 session_start();
 $code=rand(0,9).dechex(rand(10,15)).rand(0,9).dechex(rand(10,15));
 $_SESSION[pic]=$code;
 $image=imagecreatetruecolor(50,18);
 $color=imagecolorallocate($image,0,0,0);//第一次使用調色板,會設為背景顏色
 $colortext=imagecolorallocate($image,rand(100,255),rand(100,255),rand(100,255));
 imagestring($image,10,rand(1,15),rand(1,5),$code,$colortext);
 imagegif($image);
?>

css.css文件

 代碼如下 復制代碼

@charset "utf-8";
/* CSS Document */

body {
 background-color: #9CF;
 text-align: left;
}
#denglu {
 width: 400px;
 margin-top: 0px;
 margin-right: auto;
 margin-bottom: 0px;
 margin-left: auto;
 background-image: url(images/login.gif);
 background-repeat: no-repeat;
 height: 320px;
 text-indent: 6px;
}
#box #denglu form {
 position: relative;
 top: 50px;
 left: 10px;
 width: 92%;
}
.must {
 color: #F00;
 font-size: 12px;
}
#box #denglu #pic {
 background-image: url(images/dot1.gif);
 background-repeat: no-repeat;
 height: 20px;
 width: 100px;
 font-size: 12px;
 color: #F00;
 text-align: left;
 line-height: 18px;
 left: 10px;
 top: 30px;
 position: relative;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved