yes you were (my mistake)
$postID = $myrow['ID']; < just make sure thats setting the correct ID
Now in my code I've assume you've already in the middle of a query (looping) with the product table and now your start a query with the review table to see how many times the product ID appears in the review table....
perhaps add some echos
if ($row_items['reviewID'] == $postID) { $count = $count+1; echo $postID; echo $row_items['reviewID']; }
This will help make sure its all working right