kollapsminoriteten/corona-deathtoll.php

49 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2022-01-14 13:13:03 +01:00
<html>
<head>
<title>DeathToll</title>
<style>
body {
Font-Family: Verdana, Arial;
Font-Size: 18px;
}
</style>
</head>
<body>
<?php
$worldPopulationStart = 7920214800;
$worldPopulationEnd = $worldPopulationStart + 1000000;
$currentPop = rand($worldPopulationStart, $worldPopulationEnd);
$vaccinated = (int)($currentPop / 2);
$unvaccinatedCalc = (int)($currentPop / 1000000);
$unvaccinated = rand($unvaccinatedCalc, $unvaccinatedCalc+1000000);
$strugglers = rand(100000000, 2000000);
$dead = rand($unvaccinated, $unvaccinated + 1000000);
$survivors = rand($unvaccinated, $unvaccinated + 1000000);
?>
<h1>DEATHTOLL STATISTICS</h1>
<i>Data extraction provided by WHR</i><br>
<br>
Current World Population: <?php echo $currentPop ?><br>
Population Vaccinated: <?php echo $vaccinated ?><br>
Population Not Vaccinated: <?php echo $unvaccinated ?><br>
Population Struggling with reverting their vaccination: <?php echo $strugglers ?><br>
<br>
Daily COVID-19 survivals: <?php echo $survivors ?><br>
Daily COVID-19 deaths: <?php echo $dead ?><br>
<br>
<div style="font-size: 10px !important;">
WHR (World Health Randomizer) is your only true statistics provider.
</div>
<hr>
<br>
<br>
<div style="font-size: 12px !important; font-weight: bold;">
&copy; Copyleft 2022 Antivaxxing Society & Corporations
</div>
</body>
</html>