动态页面标题显示不正确
我正在尝试动态更改我的页面标题。我的 header.php 页面中有以下脚本,
<?php $pagetitle = "Website Home"; ?>
<head>
<title><?php echo $pagetitle ?></title>
</head>
但页面标题不是显示为“网站首页”,而是显示为“”。 php 无法在
I am trying to dynamically change my page titles. I have the following script inside my header.php page
<?php $pagetitle = "Website Home"; ?>
<head>
<title><?php echo $pagetitle ?></title>
</head>
But instead of my page title displaying as "Website Home", the page title shows up as "<?php echo $pagetitle ?>
". Is there a reason why the php will not execute inside the <title>
tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您以某种不寻常的方式调用 header.php 。只需将其
包含
到其他 php 脚本中即可。you're calling your header.php some unusual way. Just
include
it in other php script.