thinkphp会员登录有关问题

WBOY
发布: 2016-06-13 11:31:29
原创
868 人浏览过

thinkphp会员登录问题

<?php<br />session_start();<br />header('Content-Type:text/html; charset=utf-8');<br />class AdminAction extends Action{<br />      public function index(){<br />	  if(isset($_POST['username'])){<br />	        if(isset($_POST['username'])&&isset($_POST['password'])){<br />			    $db=M();<br />				$select=$db->query("select * from developers where username=".$POST['username']." and password=".$_POST['password']."");<br />				if($select){<br />				    $_SESSION['admin']=$_POST['username'];<br />					$this->redirect('Index/index','',2,'用户'.$_POST['username'].'登录成功!');<br />                 }else{<br />					$this->redirect('Index/index','',2,'用户名或者密码不正确');<br />					}<br />				}else{<br />				    $this->redirect('Index/index','',2,'用户名或密码不能为空!');<br />					}<br />					}<br />					$this->display();<br />					}<br />	<br />    <br /><br />	}<br />	?>
登录后复制

这是AdminAction代码,不知道怎么回事,不管输入什么或者不输人它都提示用户名或者密码不正确,为什么呢?哪的问题?

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!