HI,
How can i add the order by name asc, I cant find the sql query for this, can someone point me in the right direction Cheers.
<?php
/**
* Award Table v1.0b
* By Dimitris 4463
* greeceairwaysva.com/fss
* Dimitris4463 on phpVMS forums
*/
class Awards extends CodonModule
{
public function index()
{
$this->set('awards', AwardsData::GetAllAwards());
$this->render('awards_allawards.tpl');
}
}
?>