first commit

This commit is contained in:
Olu Amey
2021-10-09 21:59:14 -04:00
commit 2e1a4017c3
6336 changed files with 864678 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
class Logout extends CI_Controller {
public function index() {
// delete session
$_SESSION['username'] = ""; //$this->input->post('username');
$_SESSION['name'] = ""; //$this->input->post('username');
$_SESSION['firstname'] = ""; //= $ret->firstname;
$_SESSION['lastname'] = ""; //= $ret->lastname;
redirect(home);
}
}