Hi i'm trying to use a php variable as filename.
but im not able to get this to work.
The file name the video should load is decided by : Variable.
This is my result:
http://imageshack.us/f/85/asdasdic.png/
?php
$Video= $input[$rand_keys[0]];
?>
<script type='text/javascript'>
var whatever = "<?= $video ?>";
jwplayer('mediaspace').setup({
'flashplayer': 'player.swf',
'file': '<%=whatever%>', //<-----
'controlbar': 'bottom',
'width': '470',
'height': '320',
'skin' : 'nemesis.zip'
});
</script>
BUMp