Seznam aktuálních projektů a aktivit:


'; $DbResult = $Database->select('projekty', '*', 'finished = 0'); while($Row = $DbResult->fetch_assoc()) { $Output .= ''; } $Output .= '
'. 'Náhled'. ''. ''.$Row['title'].'
'.$Row['description']. '
'; $Output .= '

Seznam ukončených projektů a aktivit:


'; $DbResult = $Database->select('projekty', '*', 'finished = 1'); while($Row = $DbResult->fetch_assoc()) { $Output .= ''; } $Output .= '
'. 'Náhled'. ''. ''.$Row['title'].'
'.$Row['description']. '
'; $Output .= ''; echo($Output);