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

Annotation of /smpc.php

Parent Directory Parent Directory | Revision Log Revision Log


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

1 dpavlin 1.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     $title="Products : SMPC";
12     $lpic="products"; $lext=".jpg";
13     $mpic="products.gif";
14     $back_url="products.php";
15    
16 dpavlin 1.2 if (isset($smpc)) {
17 dpavlin 1.1
18 dpavlin 1.2 $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 dpavlin 1.1
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 dpavlin 1.2
34     $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
35 dpavlin 1.1
36     $main=$smarty->fetch("smpc.tpl");
37    
38     include("common.inc");
39     $smarty->assign( array(back_url=>$back_url, MAIN=>$main));
40    
41     $smarty->display("index.tpl");
42     ?>

  ViewVC Help
Powered by ViewVC 1.1.26