4 changed files with 80 additions and 2 deletions
@ -0,0 +1,21 @@ |
|||
|
|||
<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> |
Binary file not shown.
Loading…
Reference in new issue