Primero gracias por ver este post.
Ahora lo que quiero hacer es un flash que carge la radio automaticamente.
Lo que pasa es que quiero hacer uno pero sin ningun boton, osea que solo tenga el script.
Tengo uno que carga este php pero al undirle play.
Cita:
Sera que hay uno que no tenga ningun boton y que carge automaticamente<?
if(md5($_SERVER['LOCAL_ADDR'])==="4f086c0023ed5f3ce3af0df0aa414341"){
header("Cache-Control: no-cache, must-revalidate");
header("Content-type: audio/mp3");
header("Content-type: audio/mpeg");
//header("Content-Length:999999999999999");
$sock = fsockopen("91.121.16.77","8040");
$path = "/";
fputs($sock, "GET $path HTTP/1.0\r\n");
fputs($sock, "Host: 91.121.16.77\r\n");
fputs($sock, "User-Agent: WinampMPEG/2.7\r\n");
fputs($sock, "Accept: */*\r\n");
fputs($sock, "Icy-MetaData:0\r\n");
fputs($sock, "Connection: close\r\n\r\n");
fpassthru($sock);
fclose($sock);
}
?>
if(md5($_SERVER['LOCAL_ADDR'])==="4f086c0023ed5f3ce3af0df0aa414341"){
header("Cache-Control: no-cache, must-revalidate");
header("Content-type: audio/mp3");
header("Content-type: audio/mpeg");
//header("Content-Length:999999999999999");
$sock = fsockopen("91.121.16.77","8040");
$path = "/";
fputs($sock, "GET $path HTTP/1.0\r\n");
fputs($sock, "Host: 91.121.16.77\r\n");
fputs($sock, "User-Agent: WinampMPEG/2.7\r\n");
fputs($sock, "Accept: */*\r\n");
fputs($sock, "Icy-MetaData:0\r\n");
fputs($sock, "Connection: close\r\n\r\n");
fpassthru($sock);
fclose($sock);
}
?>
Gracias