tam gdzie sie ma pokazywac zawartosc strony daje include('dane.php');
dane.php to:
<?php switch($_GET['id']) { case ("1"): include ('aaa.php'); break; } ?>
i jak mam cos takiego w switchu zrobic jak linki mam takie: index.php?id=1&kategoria=1

<?php switch($_GET['id']) { case ("1"): include ('aaa.php'); break; } ?>
<?php if ($_GET['id'] == 1 && $_GET['kategoria'] ==1) include ('aaa.php'); ?>
<?php switch($_GET['id']) { case "1": if ($_GET['kategoria'] == 1) include ('aaa.php'); break; } ?>