php在提交另一个页面表单后自动刷新页面

tv6aics1  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(540)

我目前有3个页面:index.php、insertred.php和homered.php
homered是提交后更新数据库的表单,index.php是显示结果的页面。我做了一些关于自动刷新页面搜索,但他们都是定时器刷新。
是否可以使index.php在homered.php提交时自动刷新?目前它是这样做的:homered.php submit button>insertred.php>index.php
homered.php:(删除了php部分作为其会话检查)

<html>

<head>
    <link rel="stylesheet" type="text/css" href="homered.css">                           
    </head>
<body>
<div class="centerimage">
<img src="images/anonymousfacepng.png" alt="Avatar" align="middle">
</div>
<div class="home-page">  
  <div class="form">
    <form class="home-form" action="insertred.php" method="post">
    <input type="text" placeholder="FTP Password" name="FTPBreach"/>
    <input type="text" placeholder="XP2 Victim IP" name="VictimIP"/>
    <input type="text" placeholder="XP2 Victim Password" name="VictimPass"/>
    <input type="text" placeholder="SQL Username" name="SQLUser"/>
    <input type="text" placeholder="SQL Password" name="SQLPass"/>
    <button>Submit</button>
      <p class="message"><a href="logoutred.php">logout</a></p>
    </form>
  </div>
</div>
</body>
<footer>
    © 
</footer>
</html>

insertred.php文件:

<?php
    $db = mysqli_connect('prjtest1', 'root', 'test', '165619z_database');
    if (!$db)
    {
        die('Could not connect: ' . mysql_error());
    }
    $currenttime = date('Y-m-d H:i:s');
    echo $sql="UPDATE indextableredupdated SET FTPBreach = '$_POST[FTPBreach]', VictimIP = '$_POST[VictimIP]', VictimPass = '$_POST[VictimPass]', SQLUser = '$_POST[SQLUser]', SQLPass = '$_POST[SQLPass]', message = '$_POST[message]', time = '$currenttime' WHERE user = '2'" ;

    $query = mysqli_query($db,$sql);

    if (!mysqli_query($db, $sql))
    {
        die('Error: ' . mysql_error());
    }

    if($query)
    {

    header("location: index.php");
    }
    ?>

不确定是否需要index.php的代码,因为它很长。tldr公司;我只需要insertred.php之后刷新index.php

o3imoua4

o3imoua41#

这实际上是不可能的。php是一种服务器端语言,仅在请求时执行一次。由于php的编译方式,不可能生成监听器或类似的监听器。
它只执行一次,可能echo的任何数据等。但是当页面被客户端查看时,在页面再次刷新之前,不会运行服务器端代码。
单击此处观看一段视频,教您如何在后台/服务器上使用php

相关问题