Ok, so I tried the
$templates['game_play'] .= '
<p class=\"general\">Rated an average of ' . $game['rate'] . ' from ' . $game['x'] . ' votes.';
And it works. Though now I am having a problem. The variable $game['gId'] from a higher part of the script is turning up blank and I can not figure out why. I am not changing the value of it at all. Here is the code it is being used it:
$votes = mysql_query("SELECT * FROM game_reviews WHERE gId = '" . $game[gId] . "'") or die(mysql_error());
And it is being used higher up in the script properly a few lines up like this:
$templates['game_play'] = '...
<a href=\"/forum/forum.php?f={$game[\'gId\']}\">Discuss This Game in the Forums</a>
...';