|
10.02.2006, 23:36
PHP код:
<?php
if (eregi("block-Last_5_Jokes.php", $_SERVER['PHP_SELF'])) { Header("Location: index.php"); die(); }
global $prefix, $db;
$content = "<table width=\"100%\" border=\"0\">"; $result = $db->sql_query("select jokeid, name from ".$prefix."_jokes order by date DESC limit 0,5"); while(list($id, $name) = $db->sql_fetchrow($result)) { $content .= "<tr><td align=\"left\"><strong><big>·</big></strong> <a href=\"modules.php?name=Jokes&func=JokeView&jokeid=$id\">$name</a></td></tr>"; } $content .= "</table>"; $content .= "<br><center>[ <a href=\"modules.php?name=Jokes\">"._HREADMORE."</a> ]</center>"; ?>
|
|