-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
110 lines (80 loc) · 2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>jQuery Isotope</title>
<link rel="stylesheet" href="css/style.css">
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
<script src="js/jquery.isotope.js" type="text/javascript"></script>
</head>
<?php
mysql_connect("localhost","root","");
mysql_select_db("mapsdb");
$sql = "SELECT * FROM maps_business_category";
$rs = mysql_query($sql);
$b_category = array();
while($row=mysql_fetch_assoc($rs))
{
$b_category[]=$row;
}
$sql = "SELECT * FROM maps_business";
$rs = mysql_query($sql);
$business = array();
while($row=mysql_fetch_assoc($rs))
{
$business[]=$row;
}
?>
<body>
<h1>jQuery Isotope</h1>
<div class="portfolioFilter">
<a href="#" data-filter="*" class="current">All Business</a>
<?php foreach($b_category as $k=>$v){
?>
<a href="#" data-filter=".<?php echo str_replace(" ", "_",$v['title']);?>"><?php echo $v['title'];?></a>
<?php } ?>
</div>
<div class="portfolioContainer">
<?php foreach($business as $d=>$s){
?>
<?php foreach($b_category as $k=>$v){
?>
<div class="<?php echo str_replace(" ", "_",$v['title']);?>">
<?php
if($v['id']==$s['business_cat_id'])
{
echo $s['title'];
}
?>
</div>
<?php } ?>
<?php } ?>
</div>
<script type="text/javascript">
$(window).load(function(){
var $container = $('.portfolioContainer');
$container.isotope({
filter: '*',
animationOptions: {
duration: 750,
easing: 'linear',
queue: false
}
});
$('.portfolioFilter a').click(function(){
$('.portfolioFilter .current').removeClass('current');
$(this).addClass('current');
var selector = $(this).attr('data-filter');
$container.isotope({
filter: selector,
animationOptions: {
duration: 750,
easing: 'linear',
queue: false
}
});
return false;
});
});
</script>
</body>
</html>