forked from codeb1ooded/RTI_Automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreply_to_appelant.php
More file actions
87 lines (79 loc) · 3.06 KB
/
reply_to_appelant.php
File metadata and controls
87 lines (79 loc) · 3.06 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
87
<html>
<head>
<title>Reply To Appellant Form</title>
<link rel="stylesheet" href="css/background.css">
<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>
<meta charset="utf-8">
</head>
<body>
<div class="container">
<?php
$Id = $_GET['id'];
echo "<br><h3>Reply Information for RTI with Id: ".$Id."</h3>";
include 'config_database.php';
$query=" SELECT * FROM info_about_reply WHERE id=".$Id.";";
$r= mysqli_query($con, $query);
$res=mysqli_fetch_assoc($r);
if($res)
{
?>
<!--Processing of RTI application and response to the appellant-->
<h4><strong>(III) Processing of RTI application and response to the appellant-</strong></h4>
<form action ="reply§ion4.php" method ="post">
<table class="table table-bordered">
<tr>
<th>Date of receipt of information by the CPIO from the holder(s) of information</th>
<th><input type="text" style="height:32px" name="holder_receipt_date" value=<?php echo $res['holder_receipt_date']; ?> placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>Date of reply to appellant/complaint by CPIO</th>
<th><input type="text" style="height:32px" name="reply_date" value="<?php echo $res['reply_date']; ?> placeholder="YYYY-MM-DD"></th></tr>
</tr>
<tr>
<th>Mode of communicating reply </th>
<th><input type="text" style="height:32px" name="reply_mode" value=<?php echo $res['reply_mode']; ?>"></th>
</tr>
<tr>
<th>Whether name and address of FAA mentioned in the reply u/s 7(8)(give particulars)</th>
<th><input type="text" style="height:32px" name="faa_info" value=<?php echo $res['faa_info']; ?> ></th>
</tr>
</table>
<input type="submit" name="submitresponsenew" class=btn value="Save and Exit">
</form>
<?php
echo "<br><a class=btn href='ongoing_rti_option.php?id=".$Id."''>Back</a>" ;
}
else
{
?>
<h4><strong>(III) Processing of RTI application and response to the appellant-</strong></h4>
<form action ="reply§ion4.php" method ="post">
<table class="table table-bordered">
<tr>
<th>Date of receipt of information by the CPIO from the holder(s) of information</th>
<th><input type="text" style="height:32px" name="holder_receipt_date" value="" placeholder="YYYY-MM-DD"></th>
</tr>
<tr>
<th>Date of reply to appellant/complaint by CPIO</th>
<th><input type="text" style="height:32px" name="reply_date" value="" placeholder="YYYY-MM-DD"></th></tr>
</tr>
<tr>
<th>Mode of communicating reply </th>
<th><input type="text" style="height:32px" name="reply_mode" maxlength="50"></th>
</tr>
<tr>
<th>Whether name and address of FAA mentioned in the reply u/s 7(8)(give particulars)</th>
<th><input type="text" style="height:32px" name="faa_info" value="" placeholder=""></th>
</tr>
</table>
<input type="submit" name="submitresponse" class=btn value="Save and Exit">
</form>
<?php
echo "  <a class='btn' href='ongoing_rti_option.php?id=".$Id."''>Back</a>" ;
}
?>
</div>
</body>
</html>