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.
21 lines
487 B
21 lines
487 B
|
|
<div class="row p-3">
|
|
|
|
<?php
|
|
$q = mysqli_query($conn, "SELECT * FROM banner WHERE type='home' AND enabled=1");
|
|
while($r = mysqli_fetch_array($q)){
|
|
?>
|
|
|
|
<div class="col-6 col-sm-4 col-md-3 spot">
|
|
<div class="content">
|
|
<a href="<?= $r['link'];?>">
|
|
<div class="title"><?= $r['title'];?></div>
|
|
<img src="<?= $r['image'];?>">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|