我如何使用PHP在html页面中创建全局后缀标题

时间:2015-06-03 09:19:47

标签: php html

我应该为我的网站页面制作全局后缀标题。 例如:

<title> Watches - "global suffix" </title>

2 个答案:

答案 0 :(得分:1)

的header.php

properties

的index.php

<?php
    ....
    $title = 'Title';
    ....

答案 1 :(得分:0)

谢谢大家。我找到了答案。我的PHP脚本不在html文件中,因为apache没有配置为使用php进行html扩展。我在.htaccess文件中添加了AddType application / x-httpd-php .html,现在代码工作了。再次感谢!