new database
All checks were successful
Build and push / Pulling repo on server (push) Successful in 5s

This commit is contained in:
Chris 2023-11-27 09:16:12 +01:00
parent 9b4d159615
commit ffb8e552d2
3 changed files with 6 additions and 3 deletions

View File

@ -36,8 +36,11 @@ echo "[i] Found $last_page pages\n";
//create an array with all pages //create an array with all pages
$pages = range(1,65); $pages = range(1,65);
foreach($pages as $page)
scanPage(1,false); {
echo "[i] Crawling page $page\n";
scanPage($page);
}
function scanPage($key,$usecache=true) function scanPage($key,$usecache=true)
{ {

Binary file not shown.

View File

@ -37,7 +37,7 @@
<?php foreach ($results as $res) : <?php foreach ($results as $res) :
// graph data preparation // graph data preparation
//if ($res['bew'] != 'DIS' && $res['punkte'] != 'DIS') if ($res['bew'] != 'DIS' && $res['punkte'] != 'DIS')
{ {
$sdata['dates'][] = date("d.m.Y", strtotime($res['date'])); $sdata['dates'][] = date("d.m.Y", strtotime($res['date']));
$sdata['speed'][] = $res['msek'] ?: 0; $sdata['speed'][] = $res['msek'] ?: 0;