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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations)
Wed Feb 28 18:00:26 2001 UTC (23 years, 1 month ago) by dpavlin
Branch: MAIN
Changes since 1.2: +8 -0 lines
results iz baze

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="investor";
10
11 $title="INVESTOR'S PAGE";
12 $lpic="investor"; $lext=".jpg";
13 $mpic="investors.gif";
14
15 if ($part && file_exists("templates/$part.tpl")) {
16 $main_file=$part;
17 } else {
18 $main_file="results";
19 }
20
21 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
22
23 $sql="select id,title,pdf from news where type='r' and visible order by priority desc,date desc";
24 # print "$sql";
25 $sth = $dbh->prepare("$sql");
26 $sth->execute();
27 while ($row=$sth->fetchrow_hash()) {
28 $results[]=$row;
29 }
30 $smarty->assign("results",$results);
31
32 $main=$smarty->fetch("$main_file.tpl");
33
34 include("common.inc");
35 $smarty->assign( array(back_url=>"$section.php", MAIN=>$main));
36
37 $smarty->display("index.tpl");
38 ?>

  ViewVC Help
Powered by ViewVC 1.1.26