home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / KOMUNIK / progweb / progweb.exe / phpnuke / html / print.php < prev    next >
PHP Script  |  2000-12-05  |  2KB  |  60 lines

  1. <?PHP
  2.  
  3. ######################################################################
  4. # PHP-NUKE: Web Portal System
  5. # ===========================
  6. #
  7. # Copyright (c) 2000 by Francisco Burzi (fburzi@ncc.org.ve)
  8. # http://phpnuke.org
  9. #
  10. # This module is to generate a printer friendly page of the story
  11. #
  12. # This program is free software. You can redistribute it and/or modify
  13. # it under the terms of the GNU General Public License as published by
  14. # the Free Software Foundation; either version 2 of the License.
  15. ######################################################################
  16.  
  17. if(!isset($mainfile)) { include("mainfile.php"); }
  18. if(!isset($sid)) { exit(); }
  19.  
  20. function PrintPage($sid) {
  21.     global $site_logo, $nuke_url, $sitename, $site_font, $datetime;
  22.     $result=mysql_query("select title, time, hometext, bodytext, topic, notes from stories where sid=$sid");
  23.     list($title, $time, $hometext, $bodytext, $topic, $notes) = mysql_fetch_row($result);
  24.     $result2=mysql_query("select topictext from topics where topicid=$topic");
  25.     list($topictext) = mysql_fetch_row($result2);
  26.     formatTimestamp($time);
  27.     echo "
  28.     <html>
  29.     <head><title>$sitename</title></head>
  30.     <body bgcolor=FFFFFF text=000000>
  31.     <table border=0><tr><td>
  32.     
  33.     <table border=0 width=640 cellpadding=0 cellspacing=1 bgcolor=000000><tr><td>
  34.     <table border=0 width=640 cellpadding=20 cellspacing=1 bgcolor=FFFFFF><tr><td>
  35.     <center>
  36.     <img src=images/$site_logo border=0><br><br>
  37.     <font face=$site_font size=+2>
  38.     <b>$title</b><br>
  39.     <font size=1><b>".translate("Date:")."</b> $datetime<br><b>".translate("Topic:")."</b> $topictext<br><br>
  40.     </center><font size=2>
  41.     $hometext<br><br>
  42.     $notes<br><br>
  43.     $bodytext<br><br>
  44.     </td></tr></table></td></tr></table>
  45.     <br><br><center>
  46.     <font face=$site_font size=2>
  47.     ".translate("This article comes from")." $sitename<br>
  48.     <a href=$nuke_url>$nuke_url</a><br><br>
  49.     ".translate("The URL for this story is:")."<br>
  50.     <a href=$nuke_url/article.php?sid=$sid>$nuke_url/article.php?sid=$sid</a>
  51.  
  52.     </td></tr></table>
  53.     </body>
  54.     </html>
  55.     ";
  56. }
  57.  
  58. PrintPage($sid);
  59.  
  60. ?>