forked from codeb1ooded/RTI_Automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection4.php
More file actions
86 lines (77 loc) · 3.26 KB
/
section4.php
File metadata and controls
86 lines (77 loc) · 3.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<title>Section 4</title>
<link rel="stylesheet" href="css/background.css">
<meta charset="utf-8">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="bootstrap/jQuery/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<?php
$Id = $_GET['id'];
echo "<br><h3>Add Details of RTI with Id: ".$Id."</h3>";
include 'config_database.php';
$query=" SELECT * FROM section4 WHERE id=".$Id.";";
$r= mysqli_query($con, $query);
$res=mysqli_fetch_assoc($r);
if($res)
{
?>
<h4><strong>(IV)Reference u/s 7 of RTI Act (where applicable):</strong></h4>
<form action='reply§ion4.php' method=post>
<table class="table table-bordered">
<tr>
<th> Date of intimation given to appelant regarding fee u/s</br> 7(1) chargeable and his right to review</th>
<th><input type="text" style="height:32px" name="info_fee_date" id="Name" value=<?php echo $res['info_fee_date']; ?> placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>Quantum of (a) Fee & (b) Further fee indicated to be charged</th>
<th><input type="text" style="height:32px" name="info_fee" id="Name" value=<?php echo $res['info_fee']; ?> placeholder=""></th>
</tr>
<tr>
<th>(vi)Date of depositing fees by petitioner as demanded by CPIO </br>(indicate mode of depositing fee too)</th>
<th><input type="text" style="height:32px" name="fee_submit_date" id="Name" value=<?php echo $res['fee_submit_date']; ?> placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>(vii)Date of furnishing information </th>
<th><input type="text" style="height:32px" name="given_info_date" id="Name" value=<?php echo $res['given_info_date']; ?> placeholder="YYYY-MM-DD"></th>
</tr>
</table>
<?php
echo "<input type='submit' value ='Save and Exit' class=btn name='submitSection4new'>" ;
echo "  <a class='btn' href='ongoing_rti_option.php?id=".$Id."''>Back</a>" ;
}
else
{
?>
<h4><strong>(IV)Reference u/s 7 of RTI Act (where applicable):</strong></h4>
<form action='reply§ion4.php' method=post>
<table class="table table-bordered">
<tr>
<th> Date of intimation given to appelant regarding fee u/s</br> 7(1) chargeable and his right to review</th>
<th><input type="text" style="height:32px" name="info_fee_date" id="Name" value="" placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>Quantum of (a) Fee & (b) Further fee indicated to be charged</th>
<th><input type="text" style="height:32px" name="info_fee" id="Name" value="" class="name" placeholder=""></th>
</tr>
<tr>
<th>(vi)Date of depositing fees by petitioner as demanded by CPIO </br>(indicate mode of depositing fee too)</th>
<th><input type="text" style="height:32px" name="fee_submit_date" id="Name" value="" class="name" placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>(vii)Date of furnishing information </th>
<th><input type="text" style="height:32px" name="given_info_date" id="Name" value="" class="name" placeholder="YYYY-MM-DD"></th>
</tr>
</table>
<?php
echo "<input type='submit' value ='Save and Exit' class=btn name='submitSection4'>" ;
echo "  <a class='btn' href='ongoing_rti_option.php?id=".$Id."''>Back</a>" ;
}
?>
</form>
</div>
</body>
</html>