I’m adding some usability stuff to a friend’s site, and he already uses some custom CMS that I’m not familiar with. Basically, it’s a portfolio, and the project name needs to be in the title of the page. The PHP can be seen here:
http://cl.ly/170H462w1x2X0Q1R0p2P
I’ve tried quite a few things, but this is where I last tried:
<TITLE>The Preeminent Anthology of Alec Brownstein - <?php echo $title; ?></TITLE>
…which does nothing. Also did $pid which just gives the number of the project. Thanks for any help or insight.
You can put this part of the php code above the head
This will give the title of the current project in $title variable.