你如何在头文件上做多个页面标题?不过有一件事。对于索引页,我有
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
和索引有不同的标题?提前致谢。