انشئ صفحة php و سميه index.php ... وضع في جلد خاص كمودلز مستقل وانسخ هذه الاكواد فيها:
الكود :
|
<?php
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) { die ("You can't access this file directly..."); }
$module_name = basename(dirname(__FILE__)); $index = 1; $pagetitle = " - اي موضوع";
function index() { global $module_name; include("header.php"); OpenTable(); include("blocks/block-xxxxxxxx.php"); echo $content; CloseTable(); include("footer.php"); }
switch($func) {
default: index(); break;
}
?>
|