-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscroll-notice.php
38 lines (26 loc) · 1 KB
/
scroll-notice.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
<?php
ob_start();
error_reporting(0);
$page = "alumni";
include"conn.php";
?>
<!-- Notice -->
<section class="counter-section noticebg">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-md-6">
<marquee behavior="alternate" hight="20" scrollamount="05" >
<?php
$snotice=mysqli_query($con,"select * from `snotice` order by id desc");
while($row=mysqli_fetch_array($snotice))
{
?>
<a style="font-size:20px; color:#fff; letter-spacing:1px;" href="<?php echo $row[file]; ?>"><?php echo $row[title]; ?></a>
<?php
}?>
</marquee>
</div>
</div>
</div>
</section>
<!-- Notice -->