<?php
header("Content-Type: audio/mpeg");
header("Cache-Control: no-cache");
$stream = fopen("http://167.114.174.204:8018/stream", "r");
if ($stream) {
fpassthru($stream);
fclose($stream);
} else {
echo "Stream unavailable.";
}
?>