forked from nxvipin/Paathshaala
-
Notifications
You must be signed in to change notification settings - Fork 7
/
search.php
45 lines (44 loc) · 865 Bytes
/
search.php
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
<!DOCTYPE HTML>
<html>
<head>
<title>Paathshaala Search</title>
<?php
include 'source.php';
echo $header;
?>
<link rel="stylesheet" href="css/video.css" />
<link rel="stylesheet" href="css/search.css" />
</head>
<body>
<div id='topbar'></div>
<div id='container'>
<?php
echo $topBar;
echo $feedback;
?>
<div class='mainLeft'>
<span class='smallSubtitle'>Search Results</span>
<div id=findStuff></div>
<div id='ShowNext'> Show more results.</div>
<div id=next></div>
</div>
<div class='mainRight'>
</div>
</div><!-- /container -->
<?php
echo $bottomBar;
echo $scripts;
echo $piwik;
?>
<script type='text/javascript'>
$(document).ready(function() {
$('div#next').mouseover(function(){
var q = P.getUrlVars()['q'],
tag = P.getUrlVars()['tag'];
P.Search( q , tag );
});
$('div#next').trigger('mouseover');
});
</script>
</body>
</html>