<?php $showSumme = isset($_GET['showSumme']) ? $_GET['showSumme'] : ''; if ($showSumme == "1") { echo $inventar->summe(); } $suche = isset($_GET['suche']) ? $_GET['suche'] : ''; echo $inventar->suche($suche, "inventar", "name", "Inventar_neu.php?action=update&id"); ?> <div class="topBody"> <h2>Inventar</h2> <div> <?php $selectedFilter = isset($_GET['status']) ? $_GET['status'] : ''; echo $inventar->filter($selectedFilter); ?> </div> </div> <div class="rightBody"> <?php $inventar->recentEntries(); ?> </div> <?php # NEUEN INVENTAR EINTRAG ####################################################################### $action = isset($_GET['action']) ? $_GET['action'] : 'Speichern';