references:joomla.framework:document:jdocument-settitlesetTitle
Sets the title of the page. Syntaxvoid setTitle ( $title )
ExamplesSet the title for the page. Example global $mainframe; $document =& JFactory::getDocument(); $document->setTitle( 'Joomla! Documentation Test Bed' ); echo "Title: " . $document->getTitle(); Might produce: Result Title: Joomla! Documentation Test Bed |


