/[corp_html]/fine_chemicals.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

Annotation of /fine_chemicals.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations)
Sat Mar 3 12:56:33 2001 UTC (23 years, 1 month ago) by dpavlin
Branch: MAIN
Changes since 1.2: +6 -1 lines
bolji title-ovi stranica

1 dpavlin 1.1 <?php
2    
3     if ($QUERY_STRING == "") {
4     Header("Location: $PHP_SELF?part=Main");
5     }
6    
7     require("Smarty.class.php");
8     require("conn.inc");
9    
10     $smarty = new Smarty;
11    
12     $smarty->assign( array ( Title=>"Pliva d.d." ) );
13    
14     $section="products";
15    
16 dpavlin 1.3 if ($menu_item) {
17     $title="Products : Fine Chemicals : $menu_item";
18     } else {
19     $title="Products : Fine Chemicals";
20     }
21 dpavlin 1.1 $lpic="products"; $lext=".jpg";
22     $mpic="products.gif";
23     $back_url="products.php";
24    
25     $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
26    
27    
28 dpavlin 1.2 $sub_part=substr($part,0,strpos($part,"-"));
29     if ($sub_part == "CustomManuf") {
30     $multi_page=array(
31     "fine_chemicals.php?part=CustomManuf-Page1",
32     "fine_chemicals.php?part=CustomManuf-Page2",
33     "fine_chemicals.php?part=CustomManuf-Page3",
34     "fine_chemicals.php?part=CustomManuf-Page4",
35     "fine_chemicals.php?part=CustomManuf-Page5",
36     );
37     }
38 dpavlin 1.1
39     $main_file="./fc/";
40     if (file_exists($main_file.$part.".htm")) {
41     $main_file.=$part.".htm";
42     } else {
43     $main_file.="Main.htm";
44 dpavlin 1.3 $title="Products : Fine Chemicals";
45 dpavlin 1.1 }
46     $main=join('',file($main_file));
47    
48     include("common.inc");
49 dpavlin 1.2
50     unset($menu);
51    
52     $sth = $dbh->prepare("select item,url,file from menu where section='fine' order by num");
53     $sth->execute();
54     while ($row=$sth->fetchrow_hash()) {
55     $menu[]=$row;
56     }
57     $smarty->assign("menu",$menu);
58    
59     $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
60     contact_url => 'fine_chemicals.php?part=ContactUs'));
61 dpavlin 1.1
62     $smarty->display("index.tpl");
63     ?>

  ViewVC Help
Powered by ViewVC 1.1.26