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

Diff of /results.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.3 by dpavlin, Wed Feb 28 18:00:26 2001 UTC
# Line 12  $title="INVESTOR'S PAGE"; Line 12  $title="INVESTOR'S PAGE";
12  $lpic="investor"; $lext=".jpg";  $lpic="investor"; $lext=".jpg";
13  $mpic="investors.gif";  $mpic="investors.gif";
14    
15  $main_file="results";  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 ) );  $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");  $main=$smarty->fetch("$main_file.tpl");
33    

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

  ViewVC Help
Powered by ViewVC 1.1.26