所以我一直在谷歌上阅读,这只是一堆不同的答案,没有太多解释。
我的问题是如何在 PHP 页面之间切换?假设我的服务器上有一个目录,其中包含以下文件:
index.php
about_us.php
contact_us.php
让我们假设在所有 3 个页面上,我有一个带有 3 个链接的标题:
Home
Info
Contact
当按下其中一个按钮(比如说联系)时会发生什么?
我已经阅读了 3 种技术:
Php: header("contact_us.php")
javascript: window.location = "contact_us.php";
html: <meta http-equiv="Refresh" content="5; URL="contact_us.php">
按照今天的标准,这些是首选吗?我在某处读到您现在不应该使用 php 的 header() 函数。
任何见解都会非常有助于我做出决定:)