【发布时间】:2009-07-21 02:03:46
【问题描述】:
我的代码如下:
index.php:
<html>....
<title>My page</title>
....
<?php
switch ($_GET['id']){
case "tips":
include("tips.php");
$title = "Tips";
...
如何获取 html title 标签的标题变量?
所有页面都经过index.php。
【问题讨论】: