debe ser algo asi:
pagina donde se muestran los nombres de las pelis:
Código PHP:
   <? 
$dbcnx = @mysql_connect (localhost, root, free); 
mysql_select_db(media); 
$result = mysql_query ("select * from peliculas"); 
?> 
 
<? while($row=mysql_fetch_array($result)) { 
                                  echo'<input name="film1" type="text" id="film1" value='.$row["film1"].' />';echo'<input name="filmsel" type="radio" value="a" />'; 
                                 
                               
                                
                                echo'<p>'; 
                                  echo'<input name="film2" type="text" id="film2" value='.$row["film2"].' />'; echo'<input name="filmsel" type="radio" value="b" />'; 
                                echo'</p>'; 
                                echo'<p>'; 
                                  echo'<input name="film3" type="text" id="film3" value='.$row["film3"].' />';echo'<input name="filmsel" type="radio" value="c" />'; 
                                echo'</p>'; 
                                echo'<p>'; 
                                  echo'<input name="film4" type="text" id="film4" value='.$row["film4"].' />';echo'<input name="filmsel" type="radio" value="d" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film5" type="text" id="film5" value='.$row["film5"].' />';echo'<input name="filmsel" type="radio" value="e" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film6" type="text" id="film6" value='.$row["film6"].' />';echo'<input name="filmsel" type="radio" value="f" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film7" type="text" id="film7" value='.$row["film7"].' />';echo'<input name="filmsel" type="radio" value="g" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film8" type="text" id="film8" value='.$row["film8"].' />';echo'<input name="filmsel" type="radio" value="h" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film9" type="text" id="film9" value='.$row["film9"].' />';echo'<input name="filmsel" type="radio" value="i" />'; 
                                echo'</p> 
                                <p>'; 
                                  echo'<input name="film10" type="text" id="film10" value='.$row["film10"].' />';echo'<input name="filmsel" type="radio" value="j" />';}?>    esta es el del reproductor:
Código PHP:
   <object classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" 
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" width=400 height=300 align="middle"  
standby="Loading Microsoft Windows Media Player components..." id="MMPlayer1"> 
    <param name="filename" value="//aqui va el nombre del la peli para abrir" 
    <param name="ShowControls" value="1"> 
    <param name="ShowStatusBar" value="1"> 
    <param name="ShowDisplay" value="0"> 
    <param name="DisplaySize" value="0"> 
    <param name="Autostart" value="1"> 
    <param name="Loop" value="1"> 
    <embed  
src="la ruta o direccion del video" autostart=1 loop=1 align="middle" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp" showcontrols=1 showdisplay=0 showstatusbar=1  
filename="la ruta o direccion del video" displaysize="0" > </embed> 
  </object> 
    Muchas gracias.
 
 
