como puedo hacer para cambiarlo y que me siga funcionando bien desde ya muchas gracias :)
Código PHP:
   <?php
    if(isset($_GET['enlace'])){
    echo '<!DOCTYPE html>
    <html>
    <head>
    <title>prueba.</title>
    <script type="text/javascript" src="flowplayer-3.2.6.min.js"></script>
    <style>
    body{
    background-color:#000;
    color:#fff;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }
    </style>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    <div class="contenedor">
    <a href="'.$_GET['enlace'].'" style="display:block;margin:0 %;width:560px;height:300px;" id="player"></a>
    <script>flowplayer("player", "flowplayer-3.2.7.swf");</script>
    </div>
    </body>
</html>';
    }
?>    Código HTML:
 <script type='text/javascript' src='jwplayer.js'></script> <div id='mediaspace'>prueba</div> <script type='text/javascript'> jwplayer('mediaspace').setup({ 'flashplayer': 'player.swf', 'file': 'http://content4.longtailvideo.com/videos/flvplayer.flv', 'controlbar': 'bottom', 'width': '470', 'height': '320' }); </script>
 
 



