Спасибо, вроде получилось со случайным выводом 3-х станций.
Код страницы eldoradio.php такой:
PHP код:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Эльдорадио</title>
</head>
<body>
<p align="center"><font color="#000080"><b>Эльдорадио Санкт-Петербург</b></font></p>
<div align="center">
<?php
echo file_get_contents ("http://tophit.org/channels/radio/player/eldoradio.inc");
?>
<p>
<?php
echo file_get_contents ("http://tophit.org/channels/radio/all.php");
?>
</div>
<div id="feed-piter">
</div>
</body>
</html>
код страницы eldoradio.inc такой:
PHP код:
<EMBED TYPE="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ID="WM" Name="WM" Width="700" Height="63" Src="http://www.onair.eltel.net/eldoradio128.m3u" AutoSize="0" AutoStart="1" ClickToPlay="1" DisplaySize="0" EnableContextMenu="1" EnableFullScreenControls="1" EnableTracker="0" volume="0" PlayCount="1" ShowControls="1" ShowAudioControls="1" ShowDisplay="0" ShowGotoBar="0" ShowPositionControls="0" ShowStatusBar="1" ShowTracker="0"></EMBED>
код страницы all.php такой:
PHP код:
<div align="center">
<a href="http://tophit.org/" title="Радио Твоей Мечты"><img src="http://tophit.org/img/tophit.gif" border="0" alt="Радио Твоей Мечты" /></a>
</div>
<div valign="top">
<table border="1" width="100%">
<tr><td>
<div align="center"><b><font color="#008000">Радио-каналы</font></b></div>
</td>
</tr>
<tr><td valign="top">
<?php
$scripts = array("http://tophit.org/channels/radio/player/eldoradio.inc", "http://tophit.org/channels/radio/player/retrofm.inc", "http://tophit.org/channels/radio/player/keksfm.inc");
include($scripts[rand(0,sizeof($scripts)-1)]);
?>
<p>
<a title="Твоя мелодичная станция" href="http://tophit.org/channels/radio/eldoradio.php">
Эльдорадио</a></p>
<p>
<a title="Играем что хотим" href="http://tophit.org/channels/radio/keksfm.php">
Кекс FM</a></p>
<p>
<a title="Подпевай" href="http://tophit.org/channels/radio/retrofm.php">
Ретро FM</a></p>
<p>
<a title="Европа Плюс" href="http://tophit.org/channels/radio/europaplus.php">
Европа Плюс</a></p>
<a title="Радио Ваня" href="http://tophit.org/channels/radio/radiovania.php">Радио Ваня
</a>
<p>
<a title="Бизнес FM" href="http://tophit.org/channels/radio/businessfm.php">Бизнес FM
</a>
</p>
<br>
</td>
</tr>
</table>
</div>
Только теперь проблема - при воспроизведении станции загружается 2 плейера... Ещё один файл all.php делать, что ли?