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 ?

link|improve this question

67% accept rate
You can't add groupby clause in query? – Shashank Patel Jul 5 '11 at 13:55
1  
See: stackoverflow.com/questions/4511314/… I don't know much about Magento but what you are looking for would imply a need for a query using DISTINCT – Brendan Bullen Jul 5 '11 at 13:56
2  
Try this with your query ->setOrder('year', 'ASC')->group('year'); – Shashank Patel Jul 5 '11 at 14:03
@Shashank it probably doesn't even need the order since group automatically sorts. – clockworkgeek Jul 5 '11 at 14:29
feedback

2 Answers

up vote 2 down vote accepted

Perhaps change the display code to:

<?php
$years = array();
$coll =  $this->getAllYears();
foreach ($coll as $list)
    $years[] = $list['year'];
$years = array_unique($years);
?>

<?php foreach ($years as $year): ?>
<?php echo $year; ?>
<?php endforeach; ?>
link|improve this answer
thank you very much :) saved alot of time for me :) – kharmato Jul 6 '11 at 5:16
feedback

How about:

<?php  
$coll =  $this->getAllYears();

$lastyear
foreach ($coll as $list)
{
    if($list["year"] != $lastyear) {
    echo $list["year"];
}
$lastyear = $list["year"]
}
?>
link|improve this answer
3  
That's assuming that the years returned are ordered which isn't necessarily the case – Brendan Bullen Jul 5 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.