php 实现简单的登录功能示例【基于thinkPHP框架】

2022-04-15 0 525

本文实例讲述了php 实现简单的登录功能。分享给大家供大家参考,具体如下:

//登录页面:

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>中均运维管理平台</h1>
  <!--图片标签-->
<img src="__PUBLIC__/Images/scan.jpg"/>
 </center>
 <form>
 <center>
 用户名:<input type='text' name='username'/><br/>
 密 码:<input type='passwords' name='password'/><br/>
 验证码:<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();
 }
}
?>

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题

免责声明:
1、本网站所有发布的源码、软件和资料均为收集各大资源网站整理而来;仅限用于学习和研究目的,您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。 不得使用于非法商业用途,不得违反国家法律。否则后果自负!

2、本站信息来自网络,版权争议与本站无关。一切关于该资源商业行为与www.niceym.com无关。
如果您喜欢该程序,请支持正版源码、软件,购买注册,得到更好的正版服务。
如有侵犯你版权的,请邮件与我们联系处理(邮箱:skknet@qq.com),本站将立即改正。

NICE源码网 PHP编程 php 实现简单的登录功能示例【基于thinkPHP框架】 https://www.niceym.com/14108.html