forked from shivangg66/ERP-Module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport1.php
More file actions
74 lines (68 loc) · 1.57 KB
/
report1.php
File metadata and controls
74 lines (68 loc) · 1.57 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
<?php
require('connection.php');
session_start();
$count = 0;
$desig = $_SESSION['desig'];
$dep = $_SESSION["dep"];
$query = $_GET['q'];
$result = mysqli_query($db,$query);
if(!$result)
{
die("unable to connect");
}
?>
<table>
<tr>
<th>S.NO.</th>
<th>TITLE</th>
<th>AUTHORS</th>
<th>DEPARTMENT</th>
<th>AFFILIATION</th>
<th>CATEGORY</th>
<th>PUBLISHER</th>
<th>MONTH</th>
<th>YEAR</th>
<th>IDENTIFIER</th>
<th>NUMBER</th>
<th>DOI</th>
<th>Indexed in:</th>
<th>VOLUME</th>
<th>ISSUE</th>
<th>PAGE NO.</th>
<th>URL</th>
<th>VERIFICATION DOCUMENT</th>
<th>STATUS</th>
<th>REMARKS</th>
</tr>
<?php
if(mysqli_num_rows($result)>0)
{
while($row = mysqli_fetch_assoc($result))
{
$count++;
$title = $row['title'];
echo"<tr>";
echo"<td >".$count."</td>";
echo"<td >".$row['title']."</td>";
echo "<td >".$row['authors']."</td>";
echo "<td>".$row['department']."</td>";
echo "<td>".$row['affiliation']."</td>";
echo "<td>".$row['category']."</td>";
echo "<td>".$row['publisher']."</td>";
echo"<td>".$row['month']."</td>";
echo"<td>".$row['year']."</td>";
echo"<td>".$row['identifier']."</td>";
echo"<td>".$row['number']."</td>";
echo"<td>".$row['doi']."</td>";
echo"<td>".$row['indexed']."</td>";
echo"<td>".$row['volume']."</td>";
echo"<td>".$row['issue']."</td>";
echo"<td>".$row['page_no']."</td>";
echo"<td>".$row['url']."</td>";
echo"<td>".$row['verification_document']."</td>";
echo"<td>".$row['status']."</td>";
echo"<td>".$row['remarks']."</td>";
echo"</tr>";
}
}
?>