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
+29
View File
@@ -0,0 +1,29 @@
<?php
class Paypal extends Users_Controller {
public function index() {
$data = $this->getSessionArray();
if (!isset($_SESSION['username']) or $_SESSION['username'] == '') {
redirect(home);
} else {
}
}
public function retn() {
$data = $this->getSessionArray();
}
public function canc() {
$data = $this->getSessionArray();
redirect('/member/addfund');
}
public function ipn() {
$data = $this->getSessionArray();
}
}