/[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.4 by dpavlin, Sat Mar 3 12:56:33 2001 UTC revision 1.5 by dpavlin, Mon Mar 5 15:06:53 2001 UTC
# Line 13  if ($menu_item) $title.=" : $menu_item"; Line 13  if ($menu_item) $title.=" : $menu_item";
13  $lpic="investor"; $lext=".jpg";  $lpic="investor"; $lext=".jpg";
14  $mpic="investors.gif";  $mpic="investors.gif";
15    
16  if ($part && file_exists("templates/$part.tpl")) {  $main_file="results";
         $main_file=$part;  
 } else {  
         $main_file="results";  
 }  
17    
18  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
19    
20          $sql="select id,title,pdf from news where type='r' and visible order by priority desc,date desc";  if (! $type) $type="r";
21    
22    $sql="select id,title,pdf from news where type='$type' and visible order by priority desc,date desc";
23  #       print "$sql";  #       print "$sql";
24          $sth = $dbh->prepare("$sql");  $sth = $dbh->prepare("$sql");
25          $sth->execute();  $sth->execute();
26          while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
27                  $results[]=$row;          $results[]=$row;
28          }  }
29          $smarty->assign("results",$results);  $smarty->assign(array(
30            results=>$results,
31            type=>$type
32            ));
33    
34  $main=$smarty->fetch("$main_file.tpl");  $main=$smarty->fetch("$main_file.tpl");
35    

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

  ViewVC Help
Powered by ViewVC 1.1.26