-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinterest.php
55 lines (37 loc) · 978 Bytes
/
interest.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
//including common files
require_once './include/common.php';
require_once './template/header.php';
?>
<br/>
<center>
<form action="interest_process.php" method="post" enctype="multipart/form-data">
<table class="gridtable">
<tr>
<td>Total Amount</td>
<td>
<input type="text" name="amount" autocomplete="off">
</td>
</tr>
<tr>
<td>Amount Given</td>
<td><input type="text" name="amount_given" autocomplete="off"></td>
</tr>
<tr>
<td>Principle</td>
<td><?php echo $_GET['principle'] ?></td>
</tr>
<tr>
<td>Interest</td>
<td><?php echo $_GET['interest'] ?></td>
</tr>
<tr>
<td>Pending Amount</td>
<td><?php echo $_GET['pending_amount'] ?></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
</center>