My code looks like:
index.php
:
<html>....
<title>My page</title>
....
<?php
switch ($_GET['id']){
case "tips":
include("tips.php");
$title = "Tips";
...
How do I get the title varible to the html title
tag?
All pages pass through index.php
.