food-inventory/logout.php

10 lines
150 B
PHP
Raw Normal View History

2019-11-09 23:13:11 +01:00
<?php
require_once("./assets/php/utils.php");
// Disconnect the user
disconnect();
// Redirect to login page
header("location: login.php");
exit;
?>