Posts: 2,536
Location: Western Maryland
|
Of if you have three values that you want to combine into a single value first (in case you want to use it elsewhere on the page):
PHP Code:
$titleValue = "MySite.com - $category - $title";
// Now $titleValue is available for use elsewhere in the script.
print "<title>$titleValue</title>";
__________________
—Kyrnt
|