Yeah, I get that I need to define it first, I'm just a little confused as to the work flow. Also, I did a hard refresh to ensure I wasn't seeing a cached page, still shows the proper title for me though.
Anyway, here's my code.
First, this fetches the data:
PHP Code:
while ($row=$db->fetch_array($vehicledetails))
{
$vehiclenickname = $row[VehicleNickname];
$vehicleuserid = $row[UserID];
$Year = $row[Year];
$MakeOther = $row[MakeOther];
$ModelOther = $row[ModelOther];
$Trim = $row[Trim];
}
Then, further down in the php we have this which calls the template:
PHP Code:
eval('print_output("' . fetch_template('emFuelLog') . '");');
Then in the template I have this:
HTML Code:
<head>
<meta name="description" content="$foruminfo[description]" />
<title>$Year $MakeOther $ModelOther $Trim Gas Mileage ($vehiclenickname) - $vboptions[bbtitle]</title>
$headinclude
</head>
A little unclear on why it's not getting through

. Thanks for helping me!
--------------- Added [DATE]1250015630[/DATE] at [TIME]1250015630[/TIME] ---------------
O I see! It seems to be a problem with being logged in or not. Ideas?
--------------- Added [DATE]1250015872[/DATE] at [TIME]1250015872[/TIME] ---------------
Seems to be fixed now, let me know if you can see the titles!?
For some reason my partner had made the sql query that fetches those variables only display for the owner of the pages in question, oops!
Thank you so much for helping me figure it out