This repository has been archived on 2023-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
mlp-episodes/js/load_episodes.php

13 lines
255 B
PHP

<?php
header('Content-Type: application/javascript');
$file = fopen ("https://tsa6.tk/webapps/mlptkeps/episodes.js", "r");
if (!$file) {
$file = fopen("./episodes.js", "r");
}
while (!feof ($file)) {
echo fgets ($file, 1024);
}
fclose($file);
?>