"; $table .= ' '.$this->oLang->texts['TITLE'].' '.$this->oLang->texts['AUTHOR'].' '.$this->oLang->texts['LOCATION'].' '.$this->oLang->texts['AVAILABLE'].' '.$this->oLang->texts['TOTAL'].''; foreach ($this->aBook as $title => $aResult){ if($aResult['available']==0){ $sClass = 'lend'; } else{ $sClass = 'available'; } $table .= ' '.$aResult['title'].' '.$aResult['author'].' '.$aResult['location'].' '.$aResult['available'].' '.$aResult['number'].''; } $table .=""; echo $table; ?>