how I can make global suffix title in html page using php -


i should make global suffix title website pages. example:

<title> watches - "global suffix" </title> 

header.php

<?php     ....     $title = 'title';     .... 

index.php

<?php include('header.php'); ?> .... <title> watches - <?php echo $title; ?> </title> 

Comments