$linkprefix = 'cat=Freebies&';
<?php
// any other code you have
$linkprefix = 'cat=Freebies&';
include 'news/index.php';
?>
<?php
if($_GET['cat']){
$cat = array();
$cat[] = $_GET['cat'];
$linkprefix = 'cat=' . $_GET['cat'] . '&';
}
include 'news/index.php';
?>