Wi-Fi hotspots directory |
|
|
per type locatie |
|
$i = 0;
$zoek = "SELECT count(*) AS aantal FROM stat_soort WHERE soort IS NOT NULL";
$res = mysql_query($zoek);
$row = mysql_fetch_array($res);
$aantalrows = $row["aantal"];
// $aantalrows = mysql_num_rows($res);
// echo $sqlaantal;
// echo $aantal;
$perregel = ceil($aantalrows/2) ;
for ($h=1; $h<=2; $h++){
$start = ($h*$perregel)-$perregel;
?>
$zoek = "SELECT * FROM stat_soort WHERE soort IS NOT NULL LIMIT $start, $perregel";
$resstatistieken = mysql_query($zoek);
while ($rowallesoorten = mysql_fetch_array($resstatistieken)){
$aantal = $rowallesoorten["aantal"] ;
$soort = $rowallesoorten["soort"];
?>
( echo $aantal;?>) |
|
}
$i = $i + 1;
?>
|
} ?>
|
|
|
|
|