prepare("SELECT sum(Flaeche) as Flaeche, sum(Einwohner) as Einwohner FROM community WHERE ULAND=:land");
$result->bindParam(":land",$numLand);
$result->execute();
if ($row = $result->fetch(PDO::FETCH_ASSOC)) {
$numFlaeche=round($row['Flaeche'],0);
$numPopulation=$row['Einwohner'];
} else {exit;}
$resultUnfallzahlen = get_unfallzahlen($numJahr,$strLocation);
$resultUnfallart = get_unfallart($numJahr,$strLocation);
$resultUnfalltyp = get_unfalltyp($numJahr,$strLocation);
$resultBeteiligte = get_beteiligte($numJahr,$strLocation);
$resultVerlauf = get_verlauf($strLocation);
$numGesamt=0;
?>
Fahrrad-Unfallstatistik NRW
Fahrradunfälle in =$strName?>
Einwohnerzahl: =number_format($numPopulation,0,",",".")?> Fläche: =number_format($numFlaeche,2,",",".")?> km2
Unfallverlauf von =$numLatestYear?> bis =$numStartYear?>
| 2023 | 2022 | 2021 | 2020 | 2019 |
= $arrCategory[1]?> | = get_row($resultVerlauf,1) ?>
= $arrCategory[2]?> | = get_row($resultVerlauf,2) ?>
= $arrCategory[3]?> | = get_row($resultVerlauf,3) ?>
Gesamt | = get_row($resultVerlauf,0) ?>
Unfallzahlen =$numJahr?>
"; print_r($resultUnfallzahlen);echo "";
$numGesamt=0;
foreach ($resultUnfallzahlen as $row) {
echo "".$arrCategory[$row['UKATEGORIE']]." | ".$row['anz']." |
\n";
$numGesamt+=$row['anz'];
}
?>
Gesamt | =$numGesamt?> |
Quote pro Tausend Einwohner | = round($numGesamt/$numPopulation*1000,2) ?> |
Quote pro Fläche | = number_format($numGesamt/$numFlaeche,2,",",".") ?> /km2 |
Unfallbeteiligte
"; print_r($resultBeteiligte);echo "";
foreach ($resultBeteiligte as $key => $numCount) {
echo "".$arrBeteiligte[$key]." | ".$numCount." |
\n";
}
?>
Unfalltyp
".$arrUnfalltyp[$row['UTYP1']]." | ".$row['anz']." | \n";
}
?>
Unfallart
".$arrUnfallart[$row['UART']]." | ".$row['anz']." | \n";
}
?>