You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
248 B
11 lines
248 B
|
6 years ago
|
<?php
|
||
|
|
|
||
|
|
$file_name = "events.json";
|
||
|
|
$events = fopen($file_name, "r") or die("Unable to open file!");
|
||
|
|
header('Content-Type: application/json');
|
||
|
|
header('Access-Control-Allow-Origin: *');
|
||
|
|
echo fread($events, filesize($file_name));
|
||
|
|
fclose($events);
|
||
|
|
|
||
|
|
?>
|