What you are looking for is a php script that take in an ID as a GET variable, uses this ID to query the database and display the requested review, post, whatever.
The HTML code that should get generated needs to look something like this:
<A HREF=http://localhost/review.php?id=1>Click Here For Battlefield 1942 Review</A>
Your page that generates this links should query the database for each reviews name and id. Then it should build the above link replacing the number in id=1 and the text between the open and close tag. Finally you'll need the review.php page to do what I listed in the first paragraph.