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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (show annotations)
Thu Jan 17 10:16:05 2002 UTC (22 years, 2 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +2 -2 lines
content, not title

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="animal_health";
10 include("section.inc");
11 $title.=" : Animal Health";
12 $back_url="animal_health.php";
13
14 if (isset($smpc)) {
15
16 $sth = $dbh->prepare("select brand,form from vet_products where smpc=$smpc");
17 $sth->execute();
18 if ($row=$sth->fetchrow_hash()) {
19 $title.=" : $row[brand] $row[form]";
20 $title=str_replace("®","&reg;",$title);
21 }
22 }
23
24 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
25
26 include("find_html_file.inc");
27 if (file_exists(find_html_file("vet",$smpc))) {
28 $main=join('',file(find_html_file("vet",$smpc)));
29 # $main=str_replace("Â","",$main); // hm?
30 $main=str_replace("®","&reg;",$main);
31 $main=str_replace("µ","&micro;",$main);
32 $main=str_replace("≅","&cong;",$main);
33 }
34
35 include("common.inc");
36 $smarty->assign( array(back_url=>$back_url, contact_from=>"animal_health", MAIN=>$main));
37
38 $smarty->display("index.tpl");
39 ?>

  ViewVC Help
Powered by ViewVC 1.1.26