if(isset($ _ POST ['submit']))页面刷新不起作用

时间:2019-07-02 22:55:57

标签: php form-submit

if (isset($_POST['submit'])) {
    echo "<meta http-equiv='refresh' content='5'>";
}

似乎不起作用。我需要在提交后5秒钟刷新页面以刷新项目金额。

我也尝试过页眉,但这只是在加载页面之前重新加载页面

<?php

    if(isset($_POST['submit'])) {
        echo "<meta http-equiv='refresh' content='5'>";
    }

    echo "<td width=\"10%\"><form id=\"form1\" method=\"post\" action=\"$httpreturn\" target=\"votar\"><input name=\"command\" type=\"hidden\" value=\"useItem\"><input name=\"itemID\" type=\"hidden\" value=\"$itemID\"><input name=\"userID\" type=\"hidden\" value=\"$userID\"><input name=\"submit\" type=\"submit\" value=\"Use\"></form>";
    echo "<div><form id=\"form2\" method=\"post\" action=\"$httpreturn\" target=\"votar\"><input name=\"command\" type=\"hidden\" value=\"dropItem\"><input name=\"Item_ID\" type=\"hidden\" value=\"$itemID\"><input name=\"playerKey\" type=\"hidden\" value=\"$userID\"><input name=\"submit\" type=\"submit\" value=\"Drop\"><input name=\"itemAmount\" type=\"visable\" value=\"0\"></form></div></td>";

?>

页面上的所有其他东西都工作正常,我只需要刷新以更新数量

0 个答案:

没有答案