forked from mangoO-Microfinance/mangoO-Microfinance
-
Notifications
You must be signed in to change notification settings - Fork 1
/
start.php
41 lines (35 loc) · 816 Bytes
/
start.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE HTML>
<?PHP
require 'functions.php';
checkLogin();
connect();
getSettings();
getFees();
?>
<html>
<!-- HTML HEAD -->
<?PHP includeHead('Microfinance Management',1); ?>
<!-- HTML BODY -->
<body>
<!-- MENU -->
<?PHP
includeMenu(1);
?>
<!-- MENU MAIN -->
<div id="menu_main">
<a href="cust_search.php">Search Customer</a>
<a href="cust_new.php">New Customer</a>
<a href="loan_search.php">Search Loan</a>
</div>
<!-- Left Side of Dashboard -->
<div class="content_left" style="width:50%;">
<?PHP include $_SESSION['set_dashl']; ?>
</div>
<!-- Right Side of Dashboard -->
<div class="content_right" style="width:50%;">
<?PHP include $_SESSION['set_dashr']; ?>
</div>
<!-- Logout Reminder Message -->
<?PHP checkLogout(); ?>
</body>
</html>