<?php
/*
* Created on Aug 24, 2008
* 2.0
*/
?>
<big><b><a href="<?=$URLP->GetExtendedURL()?>"><?=$URLP->GetTitle()?>:</a> Tags</b></big>
<p>
Tags for items
<?
if ($URLP->GetUser())
echo ' from <b>'.$URLP->GetUser().'</b>';
if ($URLP->GetLocation())
echo ' with the location <b>'.$URLP->GetLocation().'</b>';
if ($URLP->GetDateString())
echo ' with the date <b>'.$URLP->GetDateString().'</b>';
if ($URLP->GetTagString())
echo ' with the tag(s) <b>'.$URLP->GetTagString().'</b>';
?>
<ul>
<? while ($row = $result->fetch_array()) {?>
<li><a href="<?=$URLP->GetExtendedURL().'&tags='.$tags.$row[0]?>">
<?=$row[0]?></a></li>
<?}?>
<li><a href="<?=$URLP->GetExtendedURL('Tags')?>&p=Tags">[ Reset Tag List ]</a></li>
</ul>
</p>