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
583 B

7 years ago
<div class="row pb-4">
<div class="col-12">
<div class="section-title">Links utili</div>
</div>
<div class="col-12 items-list py-4">
<?php
$q=mysqli_query($conn,"SELECT * FROM links WHERE section='".$getQ[2]."'");
while($r=mysqli_fetch_array($q)){
?>
<div class="item">
<i class="fa fa-angle-right"></i> <strong><?= $r['title']; ?></strong>
<p class="m-2 ml-4"><?= $r['text']; ?></p>
</div>
<?php
}
?>
</div>
</div>