ctbk.de/hackcal/index.php
2024-04-05 20:19:17 +02:00

4 lines
No EOL
253 B
PHP

<?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);