(GPLv2) or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301, USA. ********************************************************************************/ if (stristr(htmlentities($_SERVER['PHP_SELF']), "block_guide.php")) { die("
Error: This file cannot be opened directly!
"); } global $dblink; $result = $dblink->get_list("SELECT id,nome FROM memht_guide WHERE enabled=1 ORDER BY id DESC LIMIT 20"); foreach ($result as $row) { $id = intval($row['id']); $nome = outCode($row['nome']); echo "
$nome
\n"; } ?>