动态页面标题显示不正确

发布于 2024-10-28 18:54:58 字数 343 浏览 0 评论 0原文

我正在尝试动态更改我的页面标题。我的 header.php 页面中有以下脚本,

<?php $pagetitle = "Website Home"; ?>
<head>  
<title><?php echo $pagetitle ?></title>  
</head>

但页面标题不是显示为“网站首页”,而是显示为“”。 php 无法在 </code> 标签内执行是否有原因?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵性 2024-11-04 18:54:58

您以某种不寻常的方式调用 header.php 。只需将其包含到其他 php 脚本中即可。

you're calling your header.php some unusual way. Just include it in other php script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文