<div class="location"> <?php $regions = RegionStats::newInstance()->listRegions('%%%%', '>', 'i_num_items DESC'); ?> <?php $i = 1; ?> <?php foreach($regions as $r) { ?> <?php if($i <= 12) { ?> <span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search', 'sRegion' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span> <?php $i++; ?> <?php } ?> <?php } ?> </div>
<div class="location"> <?php $countries = CountryStats::newInstance()->listCountries('%%%%', '>', 'i_num_items DESC'); ?> <?php $i = 1; ?> <?php foreach($countries as $r) { ?> <?php if($i <= 12) { ?> <span class="region-span"><a href="<?php echo osc_search_url(array('page' => 'search', 'sCountry' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></span> <?php $i++; ?> <?php } ?> <?php } ?> </div>