the php vars are not being output- this results in a javascript syntax error, personally I don't like php short tags
since flashvars.sn_var = <?$sn?>; flashvars.ra_var = <?$ra?>; flashvars.rh_var = <?$rh?>; results in flashvars.sn_var = ; flashvars.ra_var = ; flashvars.rh_var = ; think you mean (here if the php var is an empty string them no error will be caused) flashvars.sn_var = '<?= $sn?>'; flashvars.ra_var = '<?= $ra?>'; flashvars.rh_var = '<?= $rh?>'; - S On 23 March 2010 08:50, laurent_C <[email protected]> wrote: > yes sorry > > > > Source are there : > > http://www.commealecole.com/test/index.php > http://www.commealecole.com/test/index.fla > http://www.commealecole.com/test/index.swf > http://www.commealecole.com/test/swfobject.js > > thank you > > -- > You received this message because you are subscribed to the Google Groups > "SWFObject" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<swfobject%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/swfobject?hl=en. > > -- You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/swfobject?hl=en.
