exist($_GET['id'])) { $art = new Art($_POST); $app->update($art); header('Location: ?id=' . $art->id() . '&edit=1'); } break; case 'login' : $_SESSION['level'] = $app->login($_POST['pass']); header('Location: ?id=' . $_GET['id']); break; case 'logout' : $_SESSION['level'] = $app->logout(); header('Location: ?id=' . $_GET['id']); break; } } // _______________________________________________________ H E A D _____________________________________________________________ $titre = 'home'; if (isset($_GET['id'])) { $titre = $_GET['id']; if ($app->exist($_GET['id'])) { $art = $app->get($_GET['id']); $titre = $art->titre(); } } $aff->head($titre); // ______________________________________________________ B O D Y _______________________________________________________________ echo ''; $aff->nav($app); if (isset($_GET['id'])) { if ($app->exist($_GET['id'])) { $art = $app->get($_GET['id']); if (isset($_GET['edit']) and $_GET['edit'] == 1) { $aff->edit($art); $aff->aside($app->list()); } else { $aff->lecture($art); } } else { if (isset($_POST['action'])) { if ($_POST['action'] == 'new') { $art = new Art($_GET); $art->default(); var_dump($art); $app->add($art); header('Location: ?id=' . $_GET['id'] . '&edit=1'); } } else { echo '

Cet article n\'existe pas encore

'; if ($level >= 2) { echo '
'; } } } } else { echo "

Bienvenue sur ce site.

"; $aff->home($app->list()); } echo ''; ?>