> 백엔드 개발 > PHP 튜토리얼 > 用thinkphp写的会员登录总是报错,求解决

用thinkphp写的会员登录总是报错,求解决

WBOY
풀어 주다: 2016-06-23 14:18:22
원래의
972명이 탐색했습니다.

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


这个是在\app\lib\action目录下的AdminAction.class.php文件,然后运行它总是说
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in F:\AppServ\www\app\Lib\Action\AdminAction.class.php on line 9
:(
syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
错误位置
FILE: F:\AppServ\www\app\Lib\Action\AdminAction.class.php  LINE: 9


回复讨论(解决方案)

双引号里边还用双引号,另外还有单引号和链接符

username="'.$POST['username'].'" 

username='{$POST['username']}' 

and password="'.$_POST['password'].'"
??也要改

username="'.$POST['username'].'" 

我去那个三个单引号在一起怎么打出来的?


username="'.$POST['username'].'" 

我去那个三个单引号在一起怎么打出来的?

真愁人,神马三个单引号,是先单引号,再双引号。   

username=\'".$POST['username']."\'

好吧  终于明白了

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿