You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
|
|
<div id="menuRight" class="col-12 col-sm-12 col-md-2 p-0">
|
|
|
|
<?php
|
|
$q = mysqli_query($conn, "SELECT * FROM banner WHERE type='right' AND enabled=1");
|
|
while($r = mysqli_fetch_array($q)){
|
|
?>
|
|
|
|
<div class="banner">
|
|
<div class="content">
|
|
<a href="<?= $r['link'];?>">
|
|
<div class="title"><?= $r['title'];?></div>
|
|
<img src="<?= $r['image'];?>">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</div>
|