I'm using a little bit flash and need to send it some variables ...
My code is this:
<param name="movie" value="preview.swf?name=<?=$name?>&type=<?=type?>">
But it outputs:
<param name="movie" value="preview.swf?name=the_name&type=the_type">
even if i write the & ... in the output it outputs: & ...
can somebody please tell me why and how can i fix this.
Question ...
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
It may be related to the arg_separator.output setting.
nope ..
here is the complete code
<a href="preview.php?cat=<?=$cat?>&page=<?=$page?>&file=<?=$file?>" style="text-decoration: none">
...... ( html code ) ....
<?
$sndcmdline="cat=".$cat."&page=".$page."&file=".$file;
?>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/sh ... on=7,0,0,0" id="player" align="middle" height="18" width="115">
<param name="movie" value='preview.swf?<?=$sndcmdline?>'>
here is the complete code
<a href="preview.php?cat=<?=$cat?>&page=<?=$page?>&file=<?=$file?>" style="text-decoration: none">
...... ( html code ) ....
<?
$sndcmdline="cat=".$cat."&page=".$page."&file=".$file;
?>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/sh ... on=7,0,0,0" id="player" align="middle" height="18" width="115">
<param name="movie" value='preview.swf?<?=$sndcmdline?>'>
okey ... i don`t know why i did this but i experimented a little so ...
in Mozzila at source code of the page the & is show as : &
in IE at source code of the page the & is &.
PS: in the link .. at href it works even if & is sourced as & ... but in the properties of the movie if the & is sourced as & it doesn`t work.
in Mozzila at source code of the page the & is show as : &
in IE at source code of the page the & is &.
PS: in the link .. at href it works even if & is sourced as & ... but in the properties of the movie if the & is sourced as & it doesn`t work.