<?php
/**
* @version 2.2
* @since 2.0 2008-08-24
* @package kwalbum
*/
?>
<big><b><a href="<?=$URLP->GetExtendedURL('Locations')?>"><?=$URLP->GetTitle()?>:</a> List of Locations</b></big> for items<?php
if ($URLP->GetUser())
echo ' from <b>'.$URLP->GetUser().'</b>';
if ($URLP->GetDateString())
echo ' with the date <b>'.$URLP->GetDateString().'</b>';
if ($URLP->GetTagString())
echo ' with the tag(s) <b>'.$URLP->GetTagString().'</b>';
?>
</big>
<ul>
<? while ($row = $result->fetch_array()) {?>
<li><a href="<?=$URLP->GetExtendedURL().'&loc='.$row[0]?>">
<?=$row[0]?></a></li>
<?}?>
</ul>
</p>