Hey,
I want to call a flash file inside a php script, the link to which is obtained from a mysql query. I can do this in the html like this ...
<P><EMBED SRC="$query_output.swf" WIDTH="400" HEIGHT="500"
TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi
?P1_Prod_Version=ShockwaveFlash"> </EMBED> </P>
but when I include this in my php script like ...
print "<P><EMBED SRC="$query_output.swf" WIDTH="400" HEIGHT="500" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </EMBED> </P>";
I keep getting a PARSE ERROR, can someone help me out with the syntax
Thanks,