14.11.2005, 17:28
Вот так вот примерно
<?
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
$module_name = basename(dirname(__FILE__));
$index = 1;
include("header.php");
OpenTable();
include("modules/$module_name/file.htm");
CloseTable();
include("footer.php");
?>
вот сюда пишешь называние нужного тебе файла
вместо file.htm
|