cakephp user login verification example short good example
/app/controllers/user_controller.php
class UserController extends AppController {
var $uses=array('user');
function index(){
}
function login(){
if(!empty($this->data['user'])){
//$this->user->name=$this->data['user']['name'];
$user=$this->user->find("user.name='".$this->data['user']['name']."'");
print_r($user);
$user=$user['user'];
print_r($user);
if($user['password']==md5($this->data['user']['password'])){
$this->Session->write('login',1);
$this->flash('login suss!!','/user');
}else{
if(!$user['id']){
$this->flash('no this user!!','/user');
}else{
$this->flash('name or pass is wrong!!','/user');
}
}
}else{
$this->flash('need name and password!!','/user');
}
exit();
}
function logout(){
if($this->Session->check('login')){
$this->Session->del('login');
}
$this->flash('logout ok ','/user');
exit();
}
function reset(){
$name='aaa';
$pass='aaa';
$user=$this->user->findByName($name);
if($user['user']['id']){
$this->user->set($user);
}else{
$this->user->set('name',$name);
$this->user->set('password',md5($pass));
}
$ret=$this->user->save();
if($ret){
$this->flash('update ok!!','/user');
}else{
$this->flash('update ok!!','/user');
}
}
}
?>
/app/models/user.php
class User extends AppModel {
var $name="user";
var $useTable='users';
}
?>
/app/views/user/index.view
controller->Session->read('login')!=1):?>
formTag('/user/login');?>
input('user/name');?>
password('user/password');?>
submit('submit');?>
简单的用户验证 试用$model->findByFields(); 可以用model表中任意字段查询
$model->set($data);
$model->set($key,$value);
可以将查询结果直接set 后 save 如果有 主键值 会update ,如果没有 会insert到表里面。
以上就是cakephp 用户登录验证实例 短型好例子的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Using Twig in CakePHP is a way to separate templates and views, making the code more modular and maintainable. This article will introduce how to use Twig in CakePHP. 1. Install Twig. First install the Twig library in the project. You can use Composer to complete this task. Run the following command in the console: composerrequire "twig/twig:^2.0" This command will be displayed in the project's vendor

CakePHP is an open source web application framework built on the PHP language that simplifies the development process of web applications. In CakePHP, processing file uploads is a common requirement. Whether it is uploading avatars, pictures or documents, the corresponding functions need to be implemented in the program. This article will introduce how to handle file uploads in CakePHP and some precautions. Processing uploaded files in Controller In CakePHP, uploaded files are usually processed in Cont

CakePHP is a very popular PHP framework that provides many convenient methods for web application development. TCPDF is a very commonly used PDF generation library when we need to generate PDF files in applications. This article will introduce how to use TCPDF in CakePHP. Install TCPDF First, we need to install TCPDF in our CakePHP project. This can be done in a few ways, such as manually copying the TCPDF to the project's v
