2
0
Fork 0

Weitere Netcup-Anpassungen

This commit is contained in:
Patrick Schwarz 2024-04-05 20:19:17 +02:00
parent 025bbb1bf9
commit 225e5d676a
6 changed files with 38 additions and 14 deletions

4
hackcal/index.php Normal file
View file

@ -0,0 +1,4 @@
<?php
header('Content-Type: application/json');
$period = max(filter_input(INPUT_GET, 'period', FILTER_VALIDATE_INT, array('options' => array('min_range' => 1, 'max_range' => 12))), 1);
echo file_get_contents("https://hackcal.ctbk.de/?period=".$period);