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

Diff of /smpc.php

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

revision 1.1 by dpavlin, Mon Feb 19 16:22:20 2001 UTC revision 1.4 by dpavlin, Mon Oct 1 14:05:16 2001 UTC
# Line 8  $smarty->assign( array ( Title=>"Pliva d Line 8  $smarty->assign( array ( Title=>"Pliva d
8    
9  $section="products";  $section="products";
10    
11  $title="Products : SMPC";  include("section.inc");
 $lpic="products"; $lext=".jpg";  
 $mpic="products.gif";  
 $back_url="products.php";  
12    
13  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $title.=" : SMPC";
14    $back_url="products.php";
15    
16  if (isset($smpc)) {  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          $sth = $dbh->prepare("select section,title,body
23                  from sections,paragraphs                  from sections,paragraphs
24                  where smpc=$smpc and sections.id=section_id and section<=5.2                  where smpc=$smpc and sections.id=section_id and section<=5.2
# Line 29  if (isset($smpc)) { Line 31  if (isset($smpc)) {
31          $smarty->assign("smpc",$data);          $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");  $main=$smarty->fetch("smpc.tpl");
37    
38  include("common.inc");  include("common.inc");
39  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, contact_from=>"human_health", MAIN=>$main));
40    
41  $smarty->display("index.tpl");  $smarty->display("index.tpl");
42  ?>  ?>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.26