A
Anonymous
Guest
cant you have it so that ceramics.php is another case switch with ceramics_content.php as the ceramics page set as the default then changing category for the other pages?
eg
eg
Code:
<?php $cat = $_GET['cat']; switch ($cat) {
case 'cups':
include('cups.php');
break;
case 'w/e':
include('w/e.php');
break;
default:
include('ceramics_content.php');
break;
}
?>