I wonder if anyone encounter similar problem like mine.
I have a html file with 3 flash object,
when open up the html file in my browser, the 3 flash file showed up.
I use a php script, read the html file and dump the content immediately, only the first 2 flash object is displayed, the 3rd flash object is completely missing. Even in view source, the 3rd flash object entire <object></object> is missing.
below is what my object look like for all 3 flash file
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="468" height="60">
<param name="movie" value="http://ch8c.mediacorptv.com/enews/images/celebs_long.swf">
<param name="quality" value="high">
<embed src="http://ch8c.mediacorptv.com/enews/images/celebs_long.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="468" height="60"></embed>
</object>
I need to read and parse the html file to replace some tags, that is why I encounter this wierd problem with flash objects in the html file.
Anyone got a solution for this?
Thanks in advance