html input 命令输入数据后服务器脚本没有回应


    <form action="http://starbuzzcoffee.com/processorder.php" method="POST">
      <p>
        Ship to: <br>
        Name: <input type="text" name="name"><br>
        Address: <input type="text" name="address"><br>
        City: <input type="text" name="address"><br>
        State: <input type="text" name="state"><br>
        Zip: <input type="text" name="zip"><br>
        Phone: <input type="tel" name="phone"><br>
      </p>
      <p>
        <input type="submit" value="Order Now">
      </p>
    </form>

这里我输入数据了

img


可是并没有回应我

img


按理说应该是这样子的

img

接口只接受get请求数据,题主的表单是post提交,改为get提交就可以了

img


有帮助麻烦点个采纳【本回答右上角】,谢谢~~


<form action="http://starbuzzcoffee.com/processorder.php" method="get">
    <p>
        Ship to: <br>
        Name: <input type="text" name="name"><br>
        Address: <input type="text" name="address"><br>
        City: <input type="text" name="address"><br>
        State: <input type="text" name="state"><br>
        Zip: <input type="text" name="zip"><br>
        Phone: <input type="tel" name="phone"><br>
    </p>
    <p>
        <input type="submit" value="Order Now">
    </p>
</form>

你后台怎么写的。贴出来看看

http://starbuzzcoffee.com/processorder.php
这个接口有规定需要什么参数吗,可能你需要穿给它符合规定的参数服务器才能响应给你