Would it be better to try to add and concatenate the page title and title tag or can I just replace the info sent to with a custom string?
Atahualpa Code
PHP Code:
<?php
list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options();
get_header();
extract($bfa_ata);
?>
My Thoughts
PHP Code:
<?php
$itemname = $row_rsMainItemListing['Name'];
$pagetitle = "$itemname - Dungeons and Dragons Online Item Info";
list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $pagetitle) = bfa_get_options();
get_header();
extract($bfa_ata);
?>
Thanks a ton for your help!