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

yipeiwu_com5年前PHP代码库
复制代码 代码如下:

<html>
 <head>
  <title>HelloWorld</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <link rel="stylesheet" type="text/css" href="../../ext-4.0.7-gpl/resources/css/ext-all.css" >
  <script type="text/javascript" src="../../ext-4.0.7-gpl/bootstrap.js"></script>
  <script type="text/javascript" src="../../ext-4.0.7-gpl/locale/ext-lang-zh_CN.js"></script>
  <script type="text/javascript">
   Ext.onReady(function(){
    var requestConfig = {
     url:'loginServer.php', //请求的服务器地址
     params:{userName:'lowkey', password:'zq19890319'}, //请求参数
     method : "post",
     callback:function(options, success, response) {
         var msg=["请求是否成功:", success, "\n",
           "服务器返回值:", response.responseText];
         Ext.Msg.alert("提示", response.responseText);
        }
    }
    Ext.Ajax.request(requestConfig);
   });

  </script>
 </head>

 <body>
 </body>
</html>

复制代码 代码如下:

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

相关文章

深入PHP内存相关的功能特性详解

可能有的读者碰到过类似下面的错误吧:Fatal error: Allowed memory size of X bytes exhausted (tried to allocate Y...

PHP提交表单失败后如何保留已经填写的信息

本文介绍PHP提交表单失败后如何保留填写的信息一些方法总结,其中最常用的就是使用缓存方式了,这种方法如果网速慢是可能出问题的,最好的办法就是使用ajax了。 1.使用header头设置缓...

个人站长制做网页常用的php代码

复制代码 代码如下:<?php  $str = file("http://tq.tom.com/china/index.html");  $...

PHP转换文本框内容为HTML格式的方法

本文实例讲述了PHP转换文本框内容为HTML格式的方法。分享给大家供大家参考,具体如下: 有时候我们将会用到将多行文本框中输入的内容以html格式显示出来,这样子可以保持原来的文本格式,...

set_include_path在win和linux下的区别

刚刚调式程序,本来在服务器上好好的程序到了win下居然出错。 后来仔细调式才发现是set_include_path的问题。 在win下,当你要include多个路径的...