jeffeh Posted April 4, 2008 Share Posted April 4, 2008 I have a pages setup in the following format http://alookatourworld.com/index.php?page=page_name_here how would I change the title of the page depending on what $page is equal to? Thanks, Jeff Link to comment https://forums.phpfreaks.com/topic/99507-php-title-help/ Share on other sites More sharing options...
metrostars Posted April 4, 2008 Share Posted April 4, 2008 I have all the page titles set up in an array. So $pages array( 'page_name1' => 'PAge_title1', 'paagename2' => 'page_title2', ...) and then <title><?php echo $pages[$_GET['page']];?></title> Link to comment https://forums.phpfreaks.com/topic/99507-php-title-help/#findComment-509080 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.