I need to add some css to my PHP app. Im using bootstrap and I'm having problems with implementation of php inside html
<div class="container" id="tvrtkeLista">
<?php if($result){ ?>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Naziv</th>
<th scope="col">Opis</th>
</tr>
</thead>
<tbody>
<?php
while(list($tvrtkaId,$naziv,$opis)=mysqli_fetch_array($result)) { ?>
<tr>
<td><a href='detalji.php?id=$tvrtkaId&naziv=$naziv'> <?php echo "$naziv" ?> </a></td>
<td> <?php echo "$opis" ?> </td>
</tr>
<?php }
} ?>
</tbody>
</table>
It's just a table styling but and it looks oke but my values now are not transfered onto next script.