college-cwk-spelling-test/logout.php

7 lines
119 B
PHP
Raw Normal View History

2014-03-04 05:08:11 -08:00
<?php
2014-04-09 08:56:22 -07:00
// Log user out
2014-03-04 05:08:11 -08:00
session_start();
session_destroy();
2014-04-09 08:56:22 -07:00
// Redirect to the login page
header("location: login.php");