forked from ThatCasualMatt/OpenParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfootinclude.php
More file actions
47 lines (44 loc) · 1.4 KB
/
footinclude.php
File metadata and controls
47 lines (44 loc) · 1.4 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
<div style="clear:both;"></div>
<hr />
<footer>
<div style="float:left"><p>© <a href="https://github.com/ThatCasualMatt/OpenParser" target="_blank">ThatCasualMatt</a> <?php echo date('Y'); ?> | <a href="pp.php">Privacy Policy</a></p></div>
</div>
</footer>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./assets/js/jquery.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./assets/js/jquery.validate.js"></script>
<script src="./assets/js/jquery.validation.functions.js"></script>
<script src="./assets/js/jquery.tablesorter.min.js"></script>
<script type="text/javascript">
$("[rel=tooltip]").tooltip();
<?php if(isset($_POST['submit'])) {
echo"
$('#collapseOne').collapse('hide');
$('#collapseSix').collapse('show');
"; } ?>
</script>
<script type="text/javascript">
function check(what){
var length=what.query.value.length;
if (length > 1)
what.submit();
else
alert("Your search must be at least two characters long.");
}
</script>
<?php if ($exactsearch === "true" && $searchtype ==="p") {
} else { ?>
<script type="text/javascript">
$(document).ready(function()
{
$("#tablelist").tablesorter();
}
);
</script> <?php }
mysql_close($con); ?>
</body>
</html>