okay i made a page for my website that has reviews on it called reviews.php then i started making the review=1 you know reviews.php?review=1 junk like dat. So when i linked from reviews.php to reviews.php?reviews=1 it just kept what was originally on the screen and added the content of review 1 below it how can i change that.
Perhaps if you used a line like
common_header();
if(isset($review)){ .... code to show the right review ..... }else{ .... code to show the default stuff .... }
common_footer();
Hope that helps