-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.php
312 lines (275 loc) · 13.4 KB
/
news.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<?php
session_start();
if($_SESSION['username']=="admin")
{
header("location: admin_home.php");
exit;
}
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !==true)
{
header("location: login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>News</title>
<link rel="stylesheet" href="css/styling-news.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/utils.css">
<link rel="stylesheet" href="css/fonts/fontstyle.css">
<link rel="stylesheet" href="css/fonts/stylesheet.css">
<link rel="stylesheet" href="css/scrollbar.css">
</head>
<body>
<header>
<div class="img-flex">
<img src="img/logo.png" alt="" class="logo">
</div>
<nav>
<ul>
<li><a href="dashboard.php">Track</a></li>
<li><a href="cryptrade.php">CrypTrade</a></li>
<li><a href="converter.php">Convert</a></li>
<li><a href="news.php" style="opacity: 1;">News</a></li>
</ul>
</nav>
<div class="user-flex">
<div class="dropdown show">
<a class="user-button bg-transparent dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<?php echo $_SESSION["username"] ?>
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="profile.php">Profile</a>
<a class="dropdown-item" href="liked_news.php">Saved News</a>
<a class="dropdown-item" href="liked_cryptos.php">Liked Cryptos</a>
<a class="dropdown-item" href="logout.php">Logout</a>
</div>
</div>
</div>
</header>
<main>
<!-- <div id="carouselExampleControls" class="carousel slide" data-ride="carousel" style="max-width: 80vw;
max-height: 50vh;
min-width: 80vw;
min-height: 50vh;">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="https://source.unsplash.com/random/?cryptocurrency" alt="First slide" style="max-width: 80vw;
max-height: 50vh;
min-width: 80vw;
min-height: 50vh;">
<div class="float" style="float:left;">ssss</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://source.unsplash.com/random/?cryptocurrency&2/" alt="Second slide" style="max-width: 100vw;
max-height: 50vh;
min-width: 100vw;
min-height: 50vh;">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="https://source.unsplash.com/random/?cryptocurrency&3/" alt="Third slide" style="max-width: 100vw;
max-height: 50vh;
min-width: 100vw;
min-height: 50vh;">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div> -->
<div class="main-flex">
<h1>News</h1>
<h4>Hot Topics</h4>
<?php
$count=1;
$con = mysqli_connect('localhost','root','');
if (!$con) {
die('Could not connect: ' . mysqli_error($con));
}
mysqli_select_db($con,"cryptrack");
$sql="SELECT * from NEWS order by ndate desc LIMIT 6;";
$result = mysqli_query($con,$sql);
echo '<div class="news-flex">'; //OPEN NEWS FLEX
echo '<div class="news-flex-upper">'; //OPEN NEWS FLEX UPPER
while($row = mysqli_fetch_array($result)) {
$id=$row['nid'];
$title=$row['ntitle'];
$desc=$row['ndesc'];
$date=$row['ndate'];
$link=$row['nlink'];
$link_img=$row['nimg'];
if($count<=3) //FOR FIRST THREE NEWS TOPICS
{
echo'<div class="news-flex-container">'; //OPEN CONTAINER
echo'<img alt="crypto" src="'.$link_img.'">';
echo'<div class="news-flex-container-title-and-like">';
echo'<h4>'.$title.'</h4>';
//FOR LIKE SYSTEM
$nid=$id;
$uid=$_SESSION['uid'];
$like_sql = "SELECT * from news_likes where uid=$uid and nid=$nid";
$res= $con -> query($like_sql);
$num_rows = mysqli_num_rows($res);
$img_link_liked="img/icons/heart-fill.png";
$img_link_unliked="img/icons/heart-line.png";
if($num_rows==0)
{
echo'<a href="like_news.php?nid='.$nid.'" class="like-img"><img src="'.$img_link_unliked.'" alt=""></a>';
}
else
{
echo'<a href="unlike_news.php?nid='.$nid.'" class="like-img"><img src="'.$img_link_liked.'" alt=""></a>';
}
// echo'<img src="img/icons/heart-fill.png" alt="">';
echo'</div>';
echo '<div class="news-flex-container-content">';
echo '<p class="news-flex-container-content-date">'.$date.'</p>';
echo '<p>'.$desc.'</p>';
echo '</div>';
echo ' <a href="'.$link.'" target="_blank" id="read-more"><input type="button" value="Read More" id="read-more"></a>';
echo'</div>'; //CLOSE CONTAINER
}
if($count==3) //FIRST THREE NEWS TOPICS ARE OVER
{
echo '</div>';
echo '<div class="news-flex-lower">'; //OPEN LOWER NEWS FLEX
}
if($count>3) //FINISH REMAINING THREE TOPICS HERE
{
echo'<div class="news-flex-container">'; //OPEN CONTAINER
echo'<img alt="crypto" src="'.$link_img.'">';
echo'<div class="news-flex-container-title-and-like">';
echo'<h4>'.$title.'</h4>';
//FOR LIKE SYSTEM
$nid=$id;
$uid=$_SESSION['uid'];
$like_sql = "SELECT * from news_likes where uid=$uid and nid=$nid";
$res= $con -> query($like_sql);
$num_rows = mysqli_num_rows($res);
$img_link_liked="img/icons/heart-fill.png";
$img_link_unliked="img/icons/heart-line.png";
if($num_rows==0)
{
echo'<a href="like_news.php?nid='.$nid.'" class="like-img"><img src="'.$img_link_unliked.'" alt=""></a>';
}
else
{
echo'<a href="unlike_news.php?nid='.$nid.'" class="like-img"><img src="'.$img_link_liked.'" alt=""></a>';
}
// echo'<img src="img/icons/heart-fill.png" alt="">';
echo'</div>';
echo '<div class="news-flex-container-content">';
echo '<p class="news-flex-container-content-date">'.$date.'</p>';
echo '<p>'.$desc.'</p>';
echo '</div>';
echo ' <a href="'.$link.'" target="_blank" id="read-more"><input type="button" value="Read More" id="read-more"></a>';
echo'</div>'; //CLOSE CONTAINER
}
$count++;
}
echo '</div>';
?>
<!-- <div class="news-flex-upper">
<div class="news-flex-container">
<img alt="crypto" src="https://source.unsplash.com/random/?cryptocurrency">
<div class="news-flex-container-title-and-like">
<h4>Surprisingly, Binance Labs Still Holds FTT, CZ Says</h4>
<img src="img/icons/heart-fill.png" alt="">
</div>
<div class="news-flex-container-content">
<p class="news-flex-container-content-date">12312313</p>
<p>Changpeng Zhao commented on Binance Labs' role in FTX funding rounds and unveiled its views on team's FTT stake </p>
</div>
<a href="..." id="read-more"><input type="button" value="Read More" id="read-more"></a>
</div>
<div class="news-flex-container">
<img alt="crypto" src="https://source.unsplash.com/random/?cryptocurrency&2/">
</div>
<div class="news-flex-container">
<img alt="crypto" src="https://source.unsplash.com/random/?cryptocurrency&3/">
</div>
</div> -->
<!-- <div class="news-flex-lower">
<div class="news-flex-container">
test
</div>
<div class="news-flex-container">
test
</div>
<div class="news-flex-container">
test
</div>
</div> -->
</div>
<!-- CLOSE NEWS FLEX -->
</div>
<!-- CLOSE MAIN -->
</main>
<footer>
<div class="footer-left">
<div class="logo-info">
<img class="footer-logo" src="img/logo.png" alt="">
<div class="fs-12">
©CrypTrack 2022
</div>
<div class="fs-12">
Crypto API powered by CoinGecko.
</div>
</div>
<ul class="footer-learn">
<li class="fs-16b">Learn</li>
<li class="fs-12">What is crypto?</li>
<li class="fs-12">Blockchain</li>
<li class="fs-12">Basics of Trading</li>
</ul>
</div>
<div class="footer-right">
<ul class="footer-follow">
<li class="fs-16b">Follow Us</li>
<li>
<a href="https://www.facebook.com">
<img src="img/footer/fb.webp" alt="facebook" class="followus-img">
</a>
</li>
<li>
<a href="https://www.instagram.com">
<img src="img/footer/insta.webp" alt="" class="followus-img">
</a>
</li>
<li>
<a href="https://www.linkedin.com">
<img src="img/footer/linkedin.png" alt="linkedin" class="followus-img">
</a>
</li>
</ul>
<ul class="footer-contact">
<li class="fs-16b">Contact Us</li>
<li class="fs-12">Email</li>
</ul>
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
var scrollpos = localStorage.getItem('scrollpos');
if (scrollpos) window.scrollTo(0, scrollpos);
});
window.onbeforeunload = function(e) {
localStorage.setItem('scrollpos', window.scrollY);
};
</script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>