本文實(shí)例講述了php 實(shí)現(xiàn)簡單的登錄功能。分享給大家供大家參考,具體如下:
//登錄頁面:
V層前端模板:
Administrator@QCEE61NZ66FEX2D /cygdrive/c/wamp/www/thinkphp/Home/Tpl/Login
$ ls
index.html
!doctype html>
html lang="en">
head>
meta name="Generator" content="EditPlus?">
meta name="Author" content="">
meta name="Keywords" content="">
meta name="Description" content="">
title>Document/title>
/head>
body>
!doctype html>
html lang="en">
head>
meta name="Generator" content="EditPlus?">
meta name="Author" content="">
meta name="Keywords" content="">
meta name="Description" content="">
title>Document/title>
/head>
body>
center>
h1>中均運(yùn)維管理平臺(tái)/h1>
!--圖片標(biāo)簽-->
img src="__PUBLIC__/Images/scan.jpg"/>
/center>
form>
center>
用戶名:input type='text' name='username'/>br/>
密 碼:input type='passwords' name='password'/>br/>
驗(yàn)證碼:input type='text' name='code'/>br/>
input type='submit'/>
center/>
!-- table width="600" hborder="0" cellspacing="0" cellpadding="0">
tr>
td>用戶名:/td>
td>input type="text" name="username"/>/td>
td>密碼:/td>
td>input type="password" name="password"/>/td>
td>input type="button" name="login" value="login"/>/td>
/tr> -->
/form>
/body>
/html>
/body>
/html>
// C層類
Administrator@QCEE61NZ66FEX2D /cygdrive/c/wamp/www/thinkphp/Home/Lib/Action
$ ls -ltr LoginAction.class.php
?php
class LoginAction extends Action {
function index(){
$this->display();
}
}
?>
更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。
希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- ThinkPHP登錄功能的實(shí)現(xiàn)方法
- ThinkPHP之用戶注冊(cè)登錄留言完整實(shí)例
- ThinkPHP3.2.2實(shí)現(xiàn)持久登錄(記住我)功能的方法
- thinkphp框架下實(shí)現(xiàn)登錄、注冊(cè)、找回密碼功能
- thinkPHP5項(xiàng)目中實(shí)現(xiàn)QQ第三方登錄功能
- thinkPHP實(shí)現(xiàn)的驗(yàn)證碼登錄功能示例
- ThinkPHP實(shí)現(xiàn)登錄退出功能
- Thinkphp框架 表單自動(dòng)驗(yàn)證登錄注冊(cè) ajax自動(dòng)驗(yàn)證登錄注冊(cè)
- thinkphp 手機(jī)號(hào)和用戶名同時(shí)登錄
- PHP實(shí)現(xiàn)用戶異地登錄提醒功能的方法【基于thinkPHP框架】
- thinkphp5框架結(jié)合mysql實(shí)現(xiàn)微信登錄和自定義分享鏈接與圖文功能示例