ヘッダーファイルで複数のページタイトルをどのようにしますか? ただし、1 つのことがあります。インデックスページについては、私は持っています
error_reporting(0);
if ($_GET["error"]=="404") {
include("forum/styles/art_air/web_template/overall_header.php");
include("include/404");
include("include/index");
include("forum/styles/art_air/web_template/overall_footer.php");
} else {
include("forum/styles/art_air/web_template/overall_header.php");
include("include/index");
include("forum/styles/art_air/web_template/overall_footer.php");
}
だから私は何よりも先にヘッダーを持っています。では、どうすればそのようにすることができますか
index?error=404
と index のタイトルが違う?前もって感謝します。