php include
我对我的网站的“负责人”有一个声明。
我正在使用以下代码调用head.php
...
<?php
include '../components/head.php'
?>
在我的head.php
我有以下代码......
<head>
<link rel="stylesheet" type="css" href="/style.css">
<title>Dummy Code</title>
</head>
如何通过在我的页面上的页面中有一个变量来更改标题,Dummy Code | About
如果我$title = "About"
在我的网页上有一个标题的话。
有没有办法做到这一点?