Esempio n. 1
0
        dbConn::addPost($_POST['title'], $_POST['message'], $_POST['date']);
        header('Location: admin.php');
    }
    include "../view/admin_add_post.php";
} else {
    if ($action == "del") {
        dbConn::delById($_GET['id']);
        header('Location: admin.php');
    } else {
        if ($action == "edit") {
            if (!isset($_GET['id'])) {
                header('Location: admin.php');
            }
            $id = $_GET['id'];
            if (!empty($_POST) && $id > 0) {
                dbConn::editById($id, $_POST['title'], $_POST['message'], $_POST['date']);
                header('Location: admin.php');
            }
            $post = dbConn::postsById($id);
            include "../view/admin_add_post.php";
        } else {
            $allPosts = dbConn::allPosts();
            include "../view/admin_panel.php";
        }
    }
}
//$row = dbConn::postsById($_GET['id']);
/*if(!empty($_POST['title'])){
			//echo "<h1>".$_GET['id']."</h1>";
			dbConn::editById($_POST['id'] ,$_POST['title'], $_POST['message'], $_POST['date']);
			header('Location: admin.php');