<?PHP
/******************************************************
    glsa class

- GLSA class
******************************************************/

class glsa{
    
    var 
$recent = array();
    
    function 
recent($count 20){
        if(
count($this->recent) < $count){
            
$sql "SELECT * FROM `glsa` ORDER BY `_added` DESC, title DESC LIMIT 0,{$count}";
            
$resultsmysql_query($sql) or die(mysql_error());
            while(
$row mysql_fetch_assoc($results)){
                
$this->recent[] = $row;
            }
        }
        
        return 
$this->recent;
    }
}

?>