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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations)
Mon Oct 1 14:05:16 2001 UTC (22 years, 6 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -10 lines
banner support, new multi-page support (with back-end)

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     if (isset($from)) {
10     $section=$from;
11     } else {
12     $section="index";
13     }
14    
15 dpavlin 1.3 include("section.inc");
16 dpavlin 1.1 $back_url="index.php";
17    
18    
19     $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
20    
21    
22     $sth = $dbh->prepare("select num,name,type,note,street,town,country,phone,fax,email,website from worldwide where type='HQ' order by num");
23     $sth->execute();
24     while ($row=$sth->fetchrow_hash()) {
25     $data[]=$row;
26     }
27     $smarty->assign("data",$data);
28     $html=$smarty->fetch("worldwide-list.tpl");
29     unset($data);
30     $smarty->assign("hq",$html);
31    
32    
33     $sth = $dbh->prepare("select num,name,type,note,street,town,country,phone,fax,email,website from worldwide where type='Subsidiary' order by num");
34     $sth->execute();
35     while ($row=$sth->fetchrow_hash()) {
36     $data[]=$row;
37     }
38     $smarty->assign("data",$data);
39     $html=$smarty->fetch("worldwide-list.tpl");
40     $smarty->assign("subsidiary",$html);
41     unset($data);
42    
43    
44     $sth = $dbh->prepare("select num,name,type,note,street,town,country,phone,fax,email,website from worldwide where type='Representative Office' order by num");
45     $sth->execute();
46     while ($row=$sth->fetchrow_hash()) {
47     $data[]=$row;
48     }
49     $smarty->assign("data",$data);
50     $html=$smarty->fetch("worldwide-list.tpl");
51     $smarty->assign("rep_office",$html);
52     unset($data);
53    
54     $main=$smarty->fetch("worldwide.tpl");
55    
56     include("common.inc");
57     $smarty->assign( array(back_url=>'index.php', MAIN=>$main));
58    
59     $smarty->display("index.tpl");
60     ?>

  ViewVC Help
Powered by ViewVC 1.1.26