PHP Classes

File: htdocs/pda.php

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   htdocs/pda.php   Download  
File: htdocs/pda.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: Merge pull request #570 from zyspec/patch-3

Another hard coded http: to use XOOPS_PROT for URLs
Date: 6 years ago
Size: 1,716 bytes
 

Contents

Class file image Download
<?php
/**
 * XOOPS PDA for news
 *
 * You may not change or alter any portion of this comment or credits
 * of supporting developers from this source code or any supporting source code
 * which is considered copyrighted (c) material of the original comment or credit authors.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * @copyright (c) 2000-2016 XOOPS Project (www.xoops.org)
 * @license GNU GPL 2 (http://www.gnu.org/licenses/gpl-2.0.html)
 * @package core
 * @since 2.0.0
 */

include __DIR__ . '/mainfile.php';

header('Content-Type: text/html');
echo
'<html><head><title>' . htmlspecialchars($xoopsConfig['sitename']) . "</title>
      <meta name='HandheldFriendly' content='True' />
      <meta name='PalmComputingPlatform' content='True' />
      </head>
      <body>"
;

$sql = 'SELECT storyid, title FROM ' . $xoopsDB->prefix('stories') . ' WHERE published>0 AND published<' . time() . ' ORDER BY published DESC';
$result = $xoopsDB->query($sql, 10, 0);
//TODO Remove this hardcoded string
if (!$result) {
    echo
'An error occured';
} else {
    echo
"<img src='images/logo.gif' alt='" . htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES) . "' border='0' /><br>";
    echo
'<h2>' . htmlspecialchars($xoopsConfig['slogan']) . '</h2>';
    echo
'<div>';
    while (
false !== (list($storyid, $title) = $xoopsDB->fetchRow($result))) {
        echo
"<a href='" . XOOPS_URL . "/modules/news/print.php?storyid=$storyid'>" . htmlspecialchars($title) . '</a><br>';
    }
    echo
'</div>';
}
echo
'</body></html>';