|
|
 |
|
if(isset($a)){
switch ($a) {
case 0:
include_once "$current_issue/"."exportwatch.php";
break;
case 2:
include_once "$current_issue/"."pricewatch.php";
break;
case 1:
include_once "$current_issue/"."pricelist.php";
break;
case 3:
include_once "$current_issue/"."news.php";
break;
}
}
else {
include_once "$current_issue/"."main.php";
}
?>
|
|