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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.10 - (show annotations)
Tue Oct 2 09:59:03 2001 UTC (22 years, 5 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.9: +0 -3 lines
fix

1 <?php
2 require("Smarty.class.php");
3 require("conn.inc");
4
5 $smarty = new Smarty;
6
7 $smarty->assign( array ( Title=>"Pliva d.d." ) );
8
9 $sub_part=substr($part,0,strpos($part,"-"));
10
11 if ($sub_part == "MIXIS") {
12 $multi_page=array(
13 "rnd.php?part=MIXIS-HomePR",
14 "rnd.php?part=MIXIS-Sci-TechPR"
15 );
16 } elseif ($sub_part == "Technology") {
17 $multi_page=array(
18 "rnd.php?part=Technology-HighThroughput",
19 "rnd.php?part=Technology-Microarrays"
20 );
21 } elseif ($sub_part == "Profile") {
22 $multi_page=array(
23 "rnd.php?part=Profile-antiinfectives1",
24 "rnd.php?part=Profile-antiinfectives2"
25 );
26 } else {
27 $multi_page=array(
28 "rnd.php?part=Azithromycin1",
29 "rnd.php?part=Azithromycin2",
30 "rnd.php?part=Azithromycin3"
31 );
32 }
33
34 include("section.inc");
35
36 $main_file="./html/";
37 if (file_exists($main_file.$part.".htm")) {
38 $main_file.=$part.".htm";
39 $main=join('',file($main_file));
40 } else {
41 $main=join('',file("./html/RnD-Main.htm"));
42 }
43
44
45 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
46
47 include("common.inc");
48 $smarty->assign("MAIN",$main);
49
50 $smarty->display("index.tpl");
51
52 ?>

  ViewVC Help
Powered by ViewVC 1.1.26