1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?php }
while ($donnees_domaine = $info_domaine->fetch()) {
echo '<tr><td><strong>'.ucfirst($donnees_domaine['dom_type']).' domain : </strong></td>'; ?>
<td><strong><?php echo $donnees_domaine['dom_deb'].' - '.$donnees_domaine['dom_fin']; ?></strong></td>
<td><strong><?php echo (($donnees_domaine['dom_fin']-$donnees_domaine['dom_deb'])+1); ?></strong></td>
<td>
<div class="modal fade" id="modal2" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class='modal-content'>
<div class="modal-header">
<button type='button' class='close' data-dismiss='modal' aria-hiden='true'>×</button>
</div>
<div class='modal-body'>
</div>
</div>
</div>
<a style="display:block;" data-toggle="modal" data-target="#modal2" href="seq.php?id=<?php echo $donnees_domaine['dom_pm_id']; ?>&beg=<?php echo $donnees_domaine['dom_deb']; ?>&end=<?php echo $donnees_domaine['dom_fin']; ?>">
<div class="seqbarre">
<?php percen($sequence,$donnees_domaine['dom_deb'],$donnees_domaine['dom_fin']); ?>
</div>
</a>
</td>
</tr> |
Partager