douyiken0968 2017-09-02 17:48
浏览 142
已采纳

php $ _REQUEST []不起作用

i have form in html file , it's file body

<form action="" method="post">       
    <input id="name" type="text" name="username" placeholder="username" required></br></br>
    <input id="password" type="password" name="password" placeholder="password" required></br></br>
    <p id="warn"></p></br></br>
    <input type="submit" value="Login" onclick="f()"></br>
</form>

<script>
function f() {
    var name = document.getElementById("name").value ;
    var password = document.getElementById("password").value ;
    var xttp = new XMLHttpRequest();
    xttp.onreadystatechange = function () {
        if (this.readyState == 4 && this.status == 200) {
            document.getElementById("warn").innerHTML = this.responseText ;             
        }
    };

    xttp.open("GET", "tst1.php?name="+name+"& password"+password, true);
    xttp.send();
}
</script>

and i have php file callled tst1.php

<?php 
    echo $_REQUEST["name"]+"...."+$_REQUEST["password"] 
?>

im trying to use ajax to show the entered value below them in p tag with id="warn" but it dose not show it

  • 写回答

2条回答 默认 最新

  • dongming4994 2017-09-02 18:01
    关注

    There are few things you need to change in your code, such as:

    • echo $_REQUEST["name"]+"...."+$_REQUEST["password"], + is not a concatenation operator, . is. So this statement should be like this:

      echo $_REQUEST["name"] . "...." . $_REQUEST["password"]; 
      
    • Missing = sign after password in this statement, xttp.open("GET", "tst1.php?name="+name+"& password"+password, true);. This statement should be like this:

      xttp.open("GET", "post.php?name="+name+"&password="+password, true);
      
    • Return false immediately after calling f() function, otherwise the page would refresh and you won't be able to see the output value here <p id="warn"></p>.

      <input ... onclick="f(); return false;">
      
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?