1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<?php
$intervntET=$conn->query("SELECT * FROM intervenants_e");
$ForfaitET=$conn->query("SELECT * FROM forfaits_et");
$PrixET=$conn->query("SELECT * FROM prix_e");
?>
<table class="table table-bordered table-striped">
<thead>
<th>Etudes
<tr>
<th>
Intervenants
</th>
<th>
Forfaits
</th>
<th>
Prix/U
</th>
</tr>
</th>
</thead>
<tbody>
<?php
/* while($resintrvE=mysqli_fetch_object($intervntET))
{
echo"<tr><td>$resintrvE->libelle_intrv_e</td>";
}
while($resforfE=mysqli_fetch_object($ForfaitET))
{
echo "<td>$resforfE->libelle_e</td>";
}
while($resprixE=mysqli_fetch_object($PrixET))
{
echo "<td>$resprixE->prix_etu</td></tr>";
} */
?>
</tbody>
</table> |
Partager