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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Mon Oct 1 14:05:16 2001 UTC (22 years, 6 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +3 -3 lines
Error occurred while calculating annotation data.
banner support, new multi-page support (with back-end)

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 $section="products";
10
11 include("section.inc");
12
13 $title.=" : SMPC";
14 $back_url="products.php";
15
16 if (isset($smpc)) {
17
18 $sth = $dbh->prepare("select brand,form from products where smpc=$smpc");
19 $sth->execute();
20 if ($row=$sth->fetchrow_hash()) $title.=" : $row[brand] $row[form]";
21
22 $sth = $dbh->prepare("select section,title,body
23 from sections,paragraphs
24 where smpc=$smpc and sections.id=section_id and section<=5.2
25 and html is true order by section asc");
26 $sth->execute();
27 while ($row=$sth->fetchrow_hash()) {
28 $data[]=$row;
29 }
30
31 $smarty->assign("smpc",$data);
32 }
33
34 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
35
36 $main=$smarty->fetch("smpc.tpl");
37
38 include("common.inc");
39 $smarty->assign( array(back_url=>$back_url, contact_from=>"human_health", MAIN=>$main));
40
41 $smarty->display("index.tpl");
42 ?>

  ViewVC Help
Powered by ViewVC 1.1.26