<?php
$request = curl_init();
curl_setopt($request,CURLOPT_URL,'http://s1.myradiostream.com:9678/7.html');
curl_setopt($request,CURLOPT_RETURNTRANSFER,1);
curl_setopt($request,CURLOPT_TIMEOUT,0);
$response = curl_exec($request);
curl_close($request);
print $response;
?>
This is not working too((
Linux is our friend!
|