how to specify page title?
-
Hi, I am using this code to have a clean page layout.. I want to know, using my code how can I specify different page title for every page? here is the code http://www.rmc.bh/temp/Myfiles.zip Thanks, Jassim
-
Hi, I am using this code to have a clean page layout.. I want to know, using my code how can I specify different page title for every page? here is the code http://www.rmc.bh/temp/Myfiles.zip Thanks, Jassim
take a variable, say $Title, use it in header.php this way
<?=$Title?>
<?php echo $Title?>and in the main pages do like this main.php
$Title="Title for Main Page";
require_once("header.php"); -
Hi, I am using this code to have a clean page layout.. I want to know, using my code how can I specify different page title for every page? here is the code http://www.rmc.bh/temp/Myfiles.zip Thanks, Jassim