i had a fucntion which is pulling all the dates from database against each record.
public function getAllYears() {
$collection = Mage::getModel('press/press')->getCollection()->getYears();
return $collection;
}
and m displaying it as :
<?php
$coll = $this->getAllYears();
?>
<?php foreach ($coll as $list): ?>
<?php echo $list["year"]; ?>
<?php endforeach; ?>
it is giving me all the years(dates), without caring for repetition, whereas i want is same date must not be repeated.
Mean same year must not repeat. Any help ?
groupautomatically sorts. – clockworkgeek Jul 5 '11 at 14:29