Hi,
Im having problems when using the header("Location: filename?args") function to act as a swf file. It works with firefox but not with Internet Explorer.
<object id="flashfile_obj" type="application/x-shockwave-flash" data="get_file.php?name=<?=urlencode("test.swf?&test_to_swf=1")?>" width="900" height="500">
<param name="movie" value="get_file.php?name=<?=urlencode("test.swf?&test_to_swf=1")?>"/>
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="base" value="_dir" />
</object>
The file get_file.php has the code:
<?php
header("Location: ".$_REQUEST["name"]);
?>
It works on firefox but not in Internet Explorer. The flash is loaded but the argument is not passed.
Any ideas?
note: i've added 3 files to anyone who wants to check the problem
Thanks