What's the error?
The only thing I can think of is after fgames, when you specify the fields you will be inputting, there's no space between field names, but when you specify the values, you have a space between variables. Try
$query = "INSERT INTO fgames (game, publisher, release, platforms, sound, gameplay, graphics, unique, overall, review) VALUES ('$game', '$publisher', '$release', '$platforms', '$sound', '$gameplay', '$graphics', '$unique', '$overall', '$review')";
mysql_query($query) or die(mysql_error());
Or it may be that you mispelled one of the field names or one of the variables doesn't have a value assigned to it (both of which have happened to me)
Cgraz