-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadremote.php
executable file
·114 lines (73 loc) · 2.08 KB
/
loadremote.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.5.7/slick.css"/>
<div id="content"><?
$page=$_GET['thisID'];
//FREE STOCK PHOTOS SOURCE
function search($keyword) {
//////YOUTUBE is MUSIC PIRACY CENTRAL THX GOOGZ!
echo'<div class="linksbarmobile">
<a class="plus" href="#"><i class="fa fa-play" style=" padding: 10px; font-size: 30px; "></i></a>
<a class="minus" style="display:none;" href="#"><img src="./mobilemenu_off.png"></a>
</div>';
echo'<div class="section group">';
$safekeyword=str_replace(' ', '+', $keyword);
$ukeyword=str_replace(' ', '_', $keyword);
echo'<div style="position: relative; z-index: 1;" class="col span_2_of_10 '.$safekeyword.' expand">';
include('scrapelinks.php');
echo'</div>';
///END MENU
echo'<div class="col span_6_of_10 '.$psafekeyword.'" text-align: left; ">';
echo'<p style="position: relative; font-size: 30px; z-index: 10000; " >
<a href="#" onclick="addListItem(\''.$keyword.'\');"><i class="fa fa-plus-circle"></i> Add to My List</a>
</p>';
include('scrapephotos.php');
echo'<br>';
include('scrapewiki.php');
echo'</div>';
echo'</div>';
}
?>
<?
$keyword=$_POST['keyword'];
//echo'Loading '.$keyword.'... <br>';
echo'<span style="font-size: 10px; ">';
echo'<div style="width: auto;">';
if(strlen($keyword)>'0')
{
search($keyword);
}
else {echo'Enter a band name and press return.';}
echo'</div>';
?>
</div>
<div style="clear:both: width: 100%;"></div>
<script>
$('document').ready(function(){
$('.plus').click(function(){
$('.expand').css('height', 'auto');
$('.plus').fadeOut(0);
$('.minus').slideDown(30);
});
$('.pplus').click(function(){
$('.pexpand').slideDown();
$('.pplus').slideUp();
});
$('.tplus').click(function(){
$('.texpand').slideDown();
$('.tplus').slideUp();
});
$('.minus').click(function(){
$('.minus').fadeOut(0);
$('.plus').slideDown(0);
$('.expand').css('height', '0px');
});
});
</script>
<script>
$(document).ready(function(){
$('.myphotos').slick({
infinite: true,
slidesToShow: 3,
slidesToScroll: 3
});
});
</script>