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
|
echo'<div id="bouton">';
echo'<a HREF="index.php?vue=vue_ajouterboxeurintform.php" > Ajouter </a>';
echo'</div>';
echo'<br />';
echo'<br />';
$bi = new boxint($connexion);
$v_unboxint=$bi->touslesboxint();
foreach($v_unboxint as $unboxint)
foreach($unboxint as $champ => $valeur)
if($champ=='Numero de licence')
{
echo'<div id="administration">';
echo"<center> <table><tr > <th >$champ</th><th> : </th><th>$valeur</th> </tr></table> ";
echo'<a HREF=" index.php?vue=vue_suppboxint.php&num='.$valeur.'" > Supprimer </a> /';
echo'<a HREF=" index.php?vue=vue_modifboxintform.php&num='.$valeur.'" > Modifier </a></center><br />';
echo'</div>';
}
else{
echo "<center> <table><tr > <th >$champ</th><th> : </th><th>$valeur</th> </tr></table></center>";
} |