-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcounty.php
More file actions
executable file
·67 lines (45 loc) · 1.46 KB
/
county.php
File metadata and controls
executable file
·67 lines (45 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php require("classes/cls.constants.php"); include("classes/cls.paths.php"); ?>
<?php include("zscript_meta.php"); ?>
<body>
<?php include("includes/wrap_head.php"); ?>
<div>
<div class="page_width">
<div class="padd15_0">
<div class="subcolumns clearfix" style="overflow:visible;">
<div class="c25l">
<div class="padd15_r">
<h3></h3>
<div class="box-cont">
<div class="box-cont-title">Featured Categories</div>
<ul class="nav_side">
<?php
$sq_d = "SELECT `content_type`, count(*) as `tdocs` FROM `dhub_dt_downloads` WHERE `county` like ".q_si($county)." GROUP BY `content_type`;";
$rs_d = $cndb->dbQueryFetch($sq_d);
foreach($rs_d as $c => $carr){
echo '<li><a href="county.php?com=5&formname=tag&county='.$county.'&dir_type='.$carr['content_type'].'" >'.$carr['content_type'].' <span class="txtwhite">['.$carr['tdocs'].']</span></a> </li> ';
}
?>
</ul>
</div>
</div>
</div>
<div class="c75r">
<div class="padd15_l" style="min-height:300px;">
<div id="wrapper" class="">
<?php
//displayArray($_SESSION['sess_dhub_member']);
?>
<!--<h2>County Resources</h2>-->
<?php //include("includes/nav_downloads-main.php"); ?>
<?php include("includes/nav_downloads-new.php"); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include("includes/wrap_foot.php"); ?>
<?php include("zscript_vary.php"); ?>
</body>
</html>