Files
4WDCSA.co.za/src/processors/logout.php

15 lines
178 B
PHP

<?php
session_start();
// Destroy the session
session_destroy();
// Redirect to login page
header("Location: index"); // Replace with your actual login page URL
exit();
?>