1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
$i=0;
$j=0;
while(blabla)
{
?>
<span onclick='part2("dept<?php echo $i;?>")'>
<?php echo "----".$listeDpt['nomdepartement'].'</br>';?>
</span><?php
$agencesDpt=mysql_query("select * from agence where id_groupe='$id_us' and id_region=".$listeRegion['id_region']." and id_departement=".$listeDpt['id_departement']."");
while($agenceDpt=mysql_fetch_array($agencesDpt))
{
?><div id='dept<?php echo $j;?>'><?php echo "-------- agence departementale - ";?><? echo $agenceDpt['nom'];?></div></br><?php
$j++;
}
$i++;
$j=0;
} |