<?php
/************************************************************************/
/* ViperWeb: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Raptr & Godboko */
/* http://development.ea-hq.net */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/* */
/* Based on PHP-Nuke found at http://www.phpnuke.org */
/************************************************************************/
if (eregi("block-Reviews.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}
global $prefix, $dbi;
$result = sql_query("SELECT id, title FROM ".$prefix."_reviews order by id DESC limit 0,10", $dbi);
while(list($id, $title) = sql_fetch_row($result, $dbi)) {
$content .= "<strong><big>·</big></strong> <a href=\"index.php?mod=Reviews&rop=showcontent&id=$id\">$title</a><br>";
}
?>