prepare("SELECT sum(Flaeche) as Flaeche, sum(Einwohner) as Einwohner, UREGBEZ, UKREIS
FROM community WHERE ULAND=:land AND UREGBEZ=:regbez AND UKREIS=:kreis");
$result->bindParam(":land",$numLand);
$result->bindParam(":regbez",$numRegbez);
$result->bindParam(":kreis",$numKreis);
$result->execute();
if ($row = $result->fetch(PDO::FETCH_ASSOC)) {
$numFlaeche=round($row['Flaeche'],1);
$numPopulation=$row['Einwohner'];
$numRegbez=$row['UREGBEZ'];
$numKreis=$row['UKREIS'];
} else {exit;}
$result=$db->query("SELECT district,title FROM district WHERE UREGBEZ=$numRegbez AND UKREIS=$numKreis AND ULAND=$numLand");
if ($row = $result->fetch(PDO::FETCH_ASSOC)){
$strName=$row['title'];
$strDistrict=$row['district'];
}
$strLocation=" AND ULAND=$numLand AND UREGBEZ=$numRegbez AND UKREIS=$numKreis ";
$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