kcmartz Posted May 26, 2010 Share Posted May 26, 2010 I would like to create a PHP dynamic title for a client's website, right now updated version is hosted at http://benjaminandsons.kcmartz.com/ Thanks, a STEP-by-STEP tutorial would be MUCH appreciated! Link to comment https://forums.phpfreaks.com/topic/203008-dynamic-title-no-mysql-please/ Share on other sites More sharing options...
jurass1c Posted May 26, 2010 Share Posted May 26, 2010 $title = 'Titlename'; include('title.php'); Title.php file - echo '<title>'; if(isset($title)) echo $title; echo '</title>'; Work it out. Link to comment https://forums.phpfreaks.com/topic/203008-dynamic-title-no-mysql-please/#findComment-1063793 Share on other sites More sharing options...
kcmartz Posted May 26, 2010 Author Share Posted May 26, 2010 Thanks, I am one of those people who after asking something continue looking, and found this (method One I am using) http://www.tutorialtastic.co.uk/tutorial/customising_your_page_title Nice and EASY!! Link to comment https://forums.phpfreaks.com/topic/203008-dynamic-title-no-mysql-please/#findComment-1063806 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.