home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / modules / AvantGo / index.php next >
PHP Script  |  2004-08-20  |  2KB  |  61 lines

  1. <?php
  2.  
  3. ######################################################################
  4. # PHP-NUKE: Web Portal System: AvantGo Add-on
  5. # ===========================================
  6. #
  7. # This module is to view your last news items via Palm or Windows CE
  8. # devices, using AvantGo software or compatible palm device browsers
  9. #
  10. # This program is free software. You can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2 of the License.
  13. #
  14. # Copyright (c) 2000 by Tim Litwiller - http://linux.made-to-order.net
  15. ######################################################################
  16.  
  17. if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
  18.         die ("You can't access this file directly...");
  19. }
  20.  
  21. require_once("mainfile.php");
  22. $module_name = basename(dirname(__FILE__));
  23. get_lang($module_name);
  24. global $sitename, $slogan, $db, $prefix;
  25. header("Content-Type: text/html");
  26. echo "<html>\n"
  27.     ."<head>\n"
  28.     ."<title>$sitename - AvantGo</title>\n"
  29.     ."<meta name=\"HandheldFriendly\" content=\"True\">\n"
  30.     ."</head>\n"
  31.     ."<body>\n\n\n"
  32.     ."<div align=\"center\">\n";
  33. $result = $db->sql_query("SELECT sid, title, time FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
  34. if (!result) {
  35.     echo "An error occured";
  36. } else {
  37.     echo "\t<a href=\"index.php\"><img src=\"images/logo.gif\" alt=\"$slogan\" title=\"$slogan\" border=\"0\"></a><br>\r\n"
  38.         ."\t<h1>$sitename</h1>\r\n"
  39.         ."\t<table border=\"0\" align=\"center\">\r\n"
  40.         ."\t\t<tr>\r\n"
  41.         ."\t\t\t<td bgcolor=\"#efefef\">"._TITLE."</td>\r\n"
  42.         ."\t\t\t<td bgcolor=\"#efefef\">"._DATE."</td>\r\n"
  43.         ."\t\t</tr>\r\n";
  44.     for ($m=0; $m < $db->sql_numrows($result); $m++) {
  45.         $row = $db->sql_fetchrow($result);
  46.     $sid = intval($row['sid']);
  47.     $title = stripslashes(check_html($row['title'], "nohtml"));
  48.     $time = $row['time'];
  49.         echo "\t\t<tr>\r\n"
  50.         ."\t\t\t<td><a href=\"modules.php?name=$module_name&file=print&sid=$sid\">$title</a></td>\r\n"
  51.             ."\t\t\t<td>$time</td>\r\n"
  52.             ."\t\t</tr>\r\n";
  53.     }
  54.     echo"\t</table>\r\n";
  55. }
  56. echo "</body>\n"
  57.     ."</html>";
  58. include ("includes/counter.php");
  59. die();
  60.  
  61. ?>