-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit_credit.php
More file actions
59 lines (57 loc) · 2.7 KB
/
edit_credit.php
File metadata and controls
59 lines (57 loc) · 2.7 KB
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
56
57
58
59
<?php include_once 'inc/top.php'; ?>
<table border="0"><tr valign="top"><td width="310"> <!-- start of frame -->
<?php include_once 'inc/aside.php'; ?>
</td><td>
<main class="tmp-base">
<?php $list_nav_key = 'Manage Credit Note'; include_once 'inc/nav.php'; ?>
<form class="tmp-form" <?php echo FORM_ATTRIB; ?>>
<fieldset>
<table class="tmp-grid" border="0">
<tr>
<td colspan="1">
<label>Zone-Session Batch No.: <a title="Ex. ABJ-1/2020/2021">(Eg.)</a></label>
<input type="search" name="batch_no" value="<?php echo $_POST['batch_no']; ?>" placeholder="Ex. ABJ-1/2020/2021" maxlength="25" list="hint_batch" required />
<?php echo $hint_batch; ?>
</td>
<td colspan="1">
<label>Credit Note Serial No.:</label>
<input type="search" name="serial_no_alt" value="<?php echo $_POST['serial_no_alt']; ?>" placeholder="Ex. 31951" maxlength="6" list="hint_serial_alt" required />
<?php echo $hint_serial_alt; ?>
</td>
<td colspan="1">
<label><x>*</x> Unique File No.:</label>
<input type="search" name="serial_no" value="<?php echo $_POST['serial_no']; ?>" placeholder="Ex. 31951" maxlength="6" required readonly />
</td>
<td> </td>
</tr>
<tr>
<td colspan="2">
<label>Select Name of School:</label>
<select name="school_id" required>
<option></option>
<?php echo $ddl_school; ?>
</select>
</td>
<td colspan="1">
<label>Card No.:</label>
<input type="search" name="card_no" value="<?php echo $_POST['card_no']; ?>" placeholder="Ex. 11252" maxlength="6" list="hint_card" required />
<?php echo $hint_card; ?>
</td>
<td colspan="1">
<label>Transaction Date:</label>
<input type="text" name="reg_date" value="<?php echo $_POST['reg_date']; ?>" placeholder="Ex. <?php echo date('d/m/Y'); ?>" required />
</td>
</tr>
<tbody><?php echo $excel; ?></tbody>
</table>
<div class="action">
<input type="hidden" name="ID" value="<?php echo $_POST['ID']; ?>" readonly />
<button type="reset" class="sec">Clear</button>
<button type="submit" class="pri">Update</button>
</div>
</fieldset>
</form>
</main>
</td></tr></table> <!-- end of frame -->
<?php include_once 'inc/footer.php'; ?>
<?php include_once 'inc/end.php'; ?>