Código HTML:
Ver original
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> .scroll { width:200px; height:450px; overflow: auto; border:1px solid #000000; /* Solo lo puse para que se vea el cuadro*/ } .link { color:blue; text-decoration:underline; cursor:pointer; } </style> <script> function updatePlayer(link) { var vlc = document.getElementById("vlc"); vlc.playlist.stop(); vlc.playlist.clear(); vlc.playlist.add(link, "live", ":network-caching=150"); vlc.playlist.play(); } </script> </head> <body> <table width="900" height="480" border="1"> <tr> </tr> <tr> <td width="260"> <div class="scroll"> <?php $file = fopen("url.txt", "r"); while(!feof($file)) { } fclose($file); ?> </div> </td> <td width="640" align="center"> <embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2" id="vlc" height="480" width="640"> </td> </tr> </table> </body> </html>