-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserials.php
More file actions
30 lines (21 loc) · 700 Bytes
/
serials.php
File metadata and controls
30 lines (21 loc) · 700 Bytes
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
<?php
require_once("includes/global.php");
require_once("includes/functions_lib.php");
require_once("includes/include_lconfig.php");
$xrf_page_subtitle = "Serials and Periodicals";
require_once("includes/header.php");
$query = "SELECT * FROM l_periodicals ORDER BY title";
$result = mysqli_query($xrf_db, $query);
$num=mysqli_num_rows($result);
echo "<table width=\"100%\">";
$qq=0;
while ($qq < $num) {
$issn = xrf_mysql_result($result,$qq,"issn");
$title = xrf_mysql_result($result,$qq,"title");
$issnhyp = xrfl_issnhyp($issn);
echo "<tr><td>$issnhyp</td><td><a href=\"search_results.php?issn=$issn\">$title</a></td></tr>";
$qq++;
}
echo "</table>";
require_once("includes/footer.php");
?>