forked from codeb1ooded/RTI_Automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathongoing_rti_option.php
More file actions
55 lines (50 loc) · 1.51 KB
/
ongoing_rti_option.php
File metadata and controls
55 lines (50 loc) · 1.51 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
<?php
if(!isset($_SESSION)){
session_start();
}
?>
<html>
<head>
<title>Ongoing RTI</title>
<link rel="stylesheet" href="css/background.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<meta charset="utf-8">
</head>
<body>
<?php
echo "<div class='container'>";
if(isset($_GET['id']))
{
$Id = $_GET['id'];
}
else{
$Id=$_SESSION['prev_rti_id'];}
$_SESSION['prev_rti_id']=$Id;
include 'config_database.php';
$var = 'test';
$query=" SELECT * FROM add_rti";
$res=mysqli_query($con, $query);
echo "<center><h3> RTI Id: ".$Id."</h3></center>";
echo "<h4> Select an option:</h4>";
echo "<br>" ;
echo "<a class='btn' href='modify_rti_details.php?id=".$Id."'>Modify Details and Queries</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='addqueries.php?id=".$Id."'>Add Additional Queries</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='reply_queries.php?id=".$Id."'>Reply Of The Queries</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='generate_reply.php?id=".$Id."'>Generate Reply</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='section4.php?id=".$Id."'>Section 4</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='reply_to_appelant.php?id=".$Id."'>Reply Information to Applicant</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='appeal.php?id=".$Id."'>First Appeal</li></a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='compid.php?id=".$Id."'>Details of RTI</a>" ;
echo "<br><br>" ;
echo "<a class='btn' href='ongoing_rti.php'>Back</a>" ;
?>
</div>
</body>
</html>