wrong:
$row[ReviewFormat]
right
$row['ReviewFormat']
mysql is dead - mysqli is the way to go
Other than that:
The original code is fine. However you say:
....
then the numrows most likely produces an error...
try this instead:
if (mysql_num_rows && mysql_num_rows($res1) > 0) {
and keep the rest of your original code. looks ok.
One thing perhaps:
echo "".$row['ReviewFormat']."";
What are the "" good for? it is the same as
echo $row['ReviewFormat'];
or if you plan to add text in front and behind then use single quotes ' intstead of double ".