Thread: Grrr Functions
View Single Post
Old 03-10-2008, 08:25 PM   #4 (permalink)
ReSpawN
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

In your configurations file;
PHP Code:
$sitename 'My site name'
In your functions file;
PHP Code:
function echoSiteTitle$sitepath '' ) {
    global 
$sitename;
    if ( 
$sitepath ) {
        return 
'<title>'$sitename .' '$sitepath .'</title>';
    } else {
        return 
'<title>'$sitename .'</title>';
    }

In your index file;
PHP Code:
echoSiteTitle(); // Displays "My site name"
echoSiteTitle('title'); // Displays "My site name title" 
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote