Hi frnds...
I need to integrate php variable with vedio scripting file.....
i fetch my vedio file path from database...here i need to replace the file=videos/movieimgae.swf ....with $vedio..
<?php
$vedio="vedios/aaa.php";
?>
<SCRIPT type=text/javascript>
var s1 = new SWFObject('player.swf','player','400','300','9');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('flashvars','file=[B]videos/movieimgae.swf[/B]');
s1.write('preview');
</SCRIPT>