-
Notifications
You must be signed in to change notification settings - Fork 2
/
all_news_cat.php
99 lines (82 loc) · 2.46 KB
/
all_news_cat.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
<?php include "includes/db.php"; ?>
<!DOCTYPE HTML>
<!--
Phantom by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<link rel="shortcut icon" type="image icon" href="https://res.cloudinary.com/sarabgi/image/upload/v1688669789/Assets/lplogo_bje93b.png">
<title>News Categories| The City of Las Piñas</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="./Assets/programservicesassets/css/main.css" />
<noscript>
<link rel="stylesheet" href="./Assets/programservicesassets/css/noscript.css" />
</noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo -->
<!-- Nav -->
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
</ul>
</nav>
</div>
</header>
<!-- Menu -->
<nav id="menu">
<h2>Menu</h2>
<ul>
<li><a href="news.php">News Home</a></li>
<li><a href="all_featured.php">Featured</a></li>
<li><a href="index.php">Home</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<div class="inner">
<header>
<h1>Categories<br />
</header>
<section class="tiles">
<?php $query = "SELECT * FROM categories ";
$select_all_cat_query = mysqli_query($connection, $query);
while ($row = mysqli_fetch_assoc($select_all_cat_query)) {
$cat_id = $row['cat_id'];
$cat_title = $row['cat_title'];
$cat_image = $row['cat_image'];
$cat_desc = $row['cat_desc'];
?>
<article class="style1">
<span class="image">
<img src="<?php echo $cat_image; ?>" height="300px" alt="category img" />
</span>
<a href="news.php?c_id=<?php echo $cat_id; ?>">
<h2><?php echo $cat_title; ?></h2>
<div class="content">
<p><?php echo $cat_desc; ?></p>
</div>
</a>
</article>
<?php } ?>
</section>
</div>
</div>
<!-- Footer -->
</div>
<!-- Scripts -->
<script src="./Assets/programservicesassets/js/jquery.min.js"></script>
<script src="./Assets/programservicesassets/js/browser.min.js"></script>
<script src="./Assets/programservicesassets/js/breakpoints.min.js"></script>
<script src="./Assets/programservicesassets/js/util.js"></script>
<script src="./Assets/programservicesassets/js/main.js"></script>
</body>
</html>