-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_search.php
More file actions
executable file
·39 lines (34 loc) · 1.07 KB
/
Copy path_search.php
File metadata and controls
executable file
·39 lines (34 loc) · 1.07 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
<?php
define('MyConst', TRUE);
include("./_header.php");
$queryB = "SELECT * FROM forname4 ";
$queryB .= "WHERE FoRCode = \"$FoRs\" ORDER BY FoRCode ASC";
$mysqli_resultB = mysqli_query($mysqli_link, $queryB);
while($rowB = mysqli_fetch_row($mysqli_resultB)) {
$FoRCode = $rowB[1];
}
/////////////////////////////////////////////////////////// Start
?>
<!-- <div data-role="header" data-theme="d">
<h1>Search Results</h1>
<a href="./index.php"
data-icon="back"
data-iconpos="notext"
data-direction="reverse">Home</a>
</div>
//-->
<div data-role="content">
<div class="content-primary">
<p style="text-align: center; padding-bottom: 12px;">
<a href="./_browse.php" data-transition="fade" data-inline="true">
<img src="./assets/images/library_seating.jpg" width="100%" id="fieldsImage">
</a>
</p>
<p class="blurb"><strong>Looking for "<?php echo $journalFind; ?>" journals ...</strong></p>
<?php include("_search_list.php"); ?>
</div>
</div>
<?php
/////////////////////////////////////////////////////////// Finish
include("./_footer.php");
?>