/[health_html]/index.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations)
Wed Aug 22 11:43:59 2001 UTC (22 years, 8 months ago) by ravilov
Branch: MAIN
Changes since 1.2: +27 -15 lines
Added the menu on the left.

1 <?php
2 include_once("inc/global.php");
3 $picdir = dirname($PHP_SELF)."/img/news";
4 $syspicdir = $HTTP_SERVER_VARS["DOCUMENT_ROOT"].$picdir;
5 include_once("inc/Smarty.class.php");
6 include_once("inc/Smarty.local.php");
7 $onload = "";
8 $tpl = new Smarty();
9 if (!$section) {
10 header("Location: $PHP_SELF?section=home");
11 exit;
12 }
13 $fname = "$section.tpl";
14 $section_name = "";
15 if ($section == "home") {
16 $section_name = "Home";
17 include_once("inc/menuHome.php");
18 $f = "inc/pgHome".($section_menu?"-$section_menu":"").".php";
19 @include_once($f);
20 } else if ($section == "ds") {
21 $section_name = "Disease &amp; Symptomes";
22 include_once("inc/menuDS.php");
23 $f = "inc/pgDS".($section_menu?"-$section_menu":"").".php";
24 @include_once($f);
25 } else if ($section == "conditions") {
26 $section_name = "Conditions";
27 include_once("inc/menuConditions.php");
28 $f = "inc/pgConditions".($section_menu?"-$section_menu":"").".php";
29 @include_once($f);
30 } else if ($section == "lifestyle") {
31 $section_name = "Lifestyle";
32 include_once("inc/menuLifestyle.php");
33 $f = "inc/pgLifestyle".($section_menu?"-$section_menu":"").".php";
34 @include_once($f);
35 } else if ($section == "library") {
36 $section_name = "Library";
37 include_once("inc/menuLibrary.php");
38 $f = "inc/pgLibrary".($section_menu?"-$section_menu":"").".php";
39 @include_once($f);
40 }
41 $tpl->assign("newspicdir", "$picdir/");
42 $tpl->assign("section", $section);
43 $tpl->assign("section_name", strtoupper($section_name));
44 $tpl->assign("section_menu", $section_menu);
45 $tpl->assign("section_menu_name", strtoupper($section_menu_name));
46 if ($fname) $main = $tpl->fetch($fname);
47 $tpl->assign("MAIN", $main);
48 $tpl->assign("onload", $onload);
49 $tpl->display("index.tpl");
50 ?>

  ViewVC Help
Powered by ViewVC 1.1.26