skip to Main Content

Sessions in PHP do not get destroyed and cookie is not removed

I have this function logout that gets called before the HTML is rendered and it is: function logout() { $_SESSION = []; if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"] ); } session_destroy();…

VIEW QUESTION

404 not found when i try to delete some of my post – Laravel

I try to delete some of my post with slug but it's not found. My route: Route::resource('/dashboard/berita', DashboardController::class)->parameters([ 'berita' => 'post:slug' ])->middleware('auth'); My Controller: public function destroy(Post $post) { $post->delete(); return redirect('/dashboard/berita')->with('success', 'Berita sudah dihapus!'); } My blade: <form action="{/dashboard/berita/{{…

VIEW QUESTION
Back To Top
Search