2
0
Fork 0
This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
website-archive/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);