13 lines
255 B
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);
|
|
?>
|