程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 深入extjs與php參數交互的詳解

深入extjs與php參數交互的詳解

編輯:關於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);
    ?>
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved