
Links for a quest
";
if (!$kysely = mysql_query("select id, name, link, description, subcat from link where category LIKE 'stuff' order by subcat, name "))
{
print "No links today";
}
else
{
$sc = " ";
while($linkki = mysql_fetch_row($kysely))
{
if ($sc <> $linkki[4]) {
print "| |
";
print "" .$linkki[4]." |
";
}
print "| ".$linkki[1]." | ";
print "".$linkki[3]." |
";
$sc = $linkki[4];
}}
print "";
?>
Back