Home  >  Article  >  Backend Development  >  深入extjs与php参数交互的详解_php技巧

深入extjs与php参数交互的详解_php技巧

WBOY
WBOYOriginal
2016-05-17 08:58:50869browse
复制代码 代码如下:


 
  HelloWorld
  
  
  
  
  
 

 
 


复制代码 代码如下:

 $userName = $_POST["userName"];
 $password = $_POST["password"];
 $msg = "";
 if($userName=="lowkey" && $password=="zq19890319") {
  $msg = "登陆成功";
 } else {
 $msg = "登陆失败";
 }
 echo($msg);
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn