This content has been marked as final.
Show 2 replies
-
1. Re: Dynamic XML URL via HTML Param (not working)
Papa Rabbit Feb 15, 2007 8:51 PM (in response to Papa Rabbit)oops... miss post on the PHP:
CORRECTION:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="800" title="Gatherer">
<param name="movie" value="flash/gatherer.swf">
<param name="quality" value="high">
<param name="Continent" value="Continent=<?php echo("$Continent");?>">
<param name="Zone" value="Zone=<?php echo("$Zone"); ?>">
<embed src="flash/gatherer.swf" quality="high" pluginspage=" http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="800" Continent="Continent=<?php echo("$Continent");?>" Zone="Zone=<?php echo("$Zone"); ?>"></embed>
</object>
I.E.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="800" title="Gatherer">
<param name="movie" value="flash/gatherer.swf">
<param name="quality" value="high">
<param name="Continent" value="Continent=1">
<param name="Zone" value="Zone=3">
<embed src="flash/gatherer.swf" quality="high" pluginspage=" http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="800" Continent="Continent=1" Zone="Zone=3"></embed>
</object> -
2. Re: Dynamic XML URL via HTML Param (not working)
Papa Rabbit Feb 15, 2007 9:08 PM (in response to Papa Rabbit)Augh... forget it... Problem solved... :-D
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="800" title="Gatherer">
<param name="movie" value="flash/gatherer.swf?Continent=1&Zone=3">
<param name="quality" value="high">
<embed src="flash/gatherer.swf?Continent=1&Zone=3" quality="high" pluginspage=" http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="800"></embed>
</object>
What it should be!