I want to declare a variable at head of a document but that variable value is at the end of the document for example
<?php$title=‘this title is located inside head tag’; //1st value
?>
<?php $title='this title is located inside body tag'; //2nd value ?>
I want 2nd value at my please tell me how to do this