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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| $ResultArray = array();
$sql = mysql_query("SELECT nom_module FROM module WHERE fk_utilisateur='3'");
while($result = mysql_fetch_assoc($sql))
{
$ResultArray[] = $result;
}
if($ResultArray[0]['nom_module'] == 'Utilisateur')
{
print 'Utilisateurs <br/>';
}
else
{
echo 'pas Utilisateurs <br/>';
}
?>
</td>
</tr>
<tr>
<td>
<?php
if($ResultArray[1]['nom_module'] == 'Produit')
{
echo '<input type="checkbox" checked/> Produits';
}
else
{
echo '<input type="checkbox" /> Produits';
}
?>
</td>
</tr>
<tr>
<td>
<?php
if($ResultArray[3]['nom_module'] == 'Article')
{
echo '<input type="checkbox" checked/> Articles';
}
else
{
echo '<input type="checkbox" /> Articles';
}
?>
</td>
</tr>
<tr>
<td>
<?php
if($ResultArray[4]['nom_module'] == "Fabricant")
{
echo '<input type="checkbox" checked/> Fabricants';
}
else
{
echo '<input type="checkbox" /> Fabricants';
}
?>
</td> |
Partager