Seznam aktuálních projektů a aktivit:
'; $DbResult = $Database->select('projekty', '*', 'finished = 0'); while($Row = $DbResult->fetch_assoc()) { $Output .= '
'. '
'. '
'. '
'.$Row['title'].'
'.$Row['description']. '
'; } $Output .= '
'; $Output .= '
Seznam ukončených projektů a aktivit:
'; $DbResult = $Database->select('projekty', '*', 'finished = 1'); while($Row = $DbResult->fetch_assoc()) { $Output .= '
'. '
'. '
'. '
'.$Row['title'].'
'.$Row['description']. '
'; } $Output .= '
'; $Output .= '