/[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

Diff of /fine_chemicals.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by dpavlin, Fri Feb 23 13:56:07 2001 UTC revision 1.5 by dpavlin, Fri Sep 7 14:10:57 2001 UTC
# Line 13  $smarty->assign( array ( Title=>"Pliva d Line 13  $smarty->assign( array ( Title=>"Pliva d
13    
14  $section="products";  $section="products";
15    
16  $title="Products : Fine Chemicals";  if ($menu_item) {
17            $title="Products : Fine Chemicals : $menu_item";
18    } else {
19            $title="Products : Fine Chemicals";
20    }
21  $lpic="products"; $lext=".jpg";  $lpic="products"; $lext=".jpg";
22  $mpic="products.gif";  $mpic="products.gif";
23  $back_url="products.php";  $back_url="products.php";
# Line 33  if ($sub_part == "CustomManuf") { Line 37  if ($sub_part == "CustomManuf") {
37  }  }
38    
39  $main_file="./fc/";  $main_file="./fc/";
40  if (file_exists($main_file.$part.".htm")) {  if ($part=="ContactUs") {
41            $sth = $dbh->prepare("select name,comment,email,tel,fax from fc_contact where is_office is not true order by num");
42            $sth->execute();
43            while ($row=$sth->fetchrow_hash()) {
44                    $person[]=$row;
45            }
46    
47            $sth = $dbh->prepare("select office,name,comment,addr1,addr2,email,tel,fax from fc_contact where is_office is true order by num");
48            $sth->execute();
49            while ($row=$sth->fetchrow_hash()) {
50                    $office[]=$row;
51            }
52            $smarty->assign( array( person=>$person, office=>$office ) );
53            $main=$smarty->fetch("fc_ContactUs.tpl");
54    
55    } elseif (file_exists($main_file.$part.".htm")) {
56          $main_file.=$part.".htm";          $main_file.=$part.".htm";
57            $main=join('',file($main_file));
58  } else {  } else {
59          $main_file.="Main.htm";          $main_file.="Main.htm";
60            $title="Products : Fine Chemicals";
61            $main=join('',file($main_file));
62  }  }
 $main=join('',file($main_file));  
63    
64  include("common.inc");  include("common.inc");
65    
66  unset($menu);  unset($menu);
67    
68  $sth = $dbh->prepare("select item,url,file from menu where section='fine' order by num");  $sth = $dbh->prepare("select item,url,file from menu where section='fine' and visible order by num");
69  $sth->execute();  $sth->execute();
70  while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
71          $menu[]=$row;          $menu[]=$row;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.5

  ViewVC Help
Powered by ViewVC 1.1.26