| Codice: |
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
include("header.php");
$index = 0;
$sql="SELECT * FROM `nuke_stories_cat` WHERE catid='3'";
mysql_query($sql);
include("footer.php");
|