forked from Infinito-IIT-Patna/Infinito2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpullUpdates.php
45 lines (40 loc) · 1.52 KB
/
pullUpdates.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
<?php
require('./connect.php');
$stmt = $pdo->query("SELECT * FROM announcements ORDER BY Date DESC");
$updates = array();
$const = 0;
while($row = $stmt->fetch()){ ?>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="single-news-item">
<div class="img" style="width:100%; height:250px;">
<img src="<?php echo $row['ImgAddress']?>" alt="Image" style=" width: 100%; height: 100%; " />
<!-- <div class="opacity tran4s"></div> -->
</div>
<!-- /.img -->
<div class="post">
<a><h6><?php echo $row['Title'] ?></h6></a>
<a>Posted<span class="p-color"> by admin </span><?php echo $row['Date'] ?></a>
<p>
<?php if($row['FacebookUrl']) { ?>
<a href="<?php echo $row['FacebookUrl'];?>" target="_blank"><button class="btn btn-primary">Facebook</button></a>
<?php }; ?>
<?php if($row['InstaUrl']) { ?>
<a href="<?php echo $row['InstaUrl'];?>" target="_blank"><button class="btn btn-primary">Instagram</button></a>
<?php }; ?>
</p>
<p> <?php echo $row['Description']; ?> </p>
</div>
<!-- /.post -->
</div>
<!-- /.single-news-item -->
</div>
<?php
$const++;
if($const>=3)
break;
}?>
<?php if($const==0){ ?>
<div class="theme-title">
<p><h3>Coming Soon</h3></p>
</div>
<?php }; ?>