<a href="?cat=Category1">Category1</a>
<a href="?cat=Category2">Category2</a>
<?php
$cat[] = $_GET['cat']; #grab the category from the url
include 'news/index.php';
?>
<form method="post" action="">
<input type="checkbox" name="cat[]" value="Category1" /> Category1 <br />
<input type="checkbox" name="cat[]" value="Category2" /> Category2 <br />
<input type="checkbox" name="cat[]" value="Category3" /> Category3 <br />
</form>
<?php
$cat = $_POST['cat']; #grab the categories the user has selected using the check boxes
include 'news/index.php';
?>