0

我有一个我无法解决的问题。在我发布表单(单击按钮)后,我想重定向到一个 URL。我怎样才能做到这一点?到目前为止,我在互联网上没有找到解决方案。

我的文件:

addmatch.html

<html>
<body>
<form action="insert.php" method="post">
Date: <input type="text" name="date">
Home: <input type="text" name="home">
Away: <input type="text" name="away">
Result: <input type="text" name="result">
<input type="submit" name="submit">
</form>

</body>
</html>

插入.php

<?php

define("HOST", "localhost");
define("DBUSER", "..");
define("PASS", "..");
define("DB", "..");

$con=mysqli_connect(HOST, DBUSER, PASS, DB);

// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="INSERT INTO wedstrijden (date, home, away, result)
VALUES
('$_POST[date]','$_POST[home]','$_POST[away]','$_POST[result]')";

if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }
echo "1 record added";

mysqli_close($con);
?>

提前致谢!

4

1 回答 1

1

正如我现在所看到的,如果您想在将数据保存在数据库中之后重定向用户,您的表单将向 insert.php 发送发布请求,您应该添加 header("location youUrl.php"); 在任何输出之前(回声,打印等)

于 2013-10-04T09:02:47.037 回答