Files
WrenchBoradWeb/www/application/controllers/Paymnt.php
T
2022-02-19 23:45:05 -05:00

24 lines
420 B
PHP

<?php
class Paymnt extends Users_Controller {
public function index() {
$data = $this->getSessionArray();
if (!isset($_SESSION['username']) or $_SESSION['username'] == '') {
redirect(home);
} else {
}
}
public function paymus() {
$data = $this->getSessionArray();
$this->RenderUserPage('users/view_startpaymus', $data);
}
}