alexville Posted February 3, 2008 Share Posted February 3, 2008 $video = "<object width='425' height='355'><param name='movie' value='http://www.youtube.com/v/". echo $videocode; . "&rel=1'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/". echo $videocode; . "&rel=1' type='application/x-shockwave-flash' wmode='transparent' width='425' height='355'></embed></object>"; I'm trying to get a output of <object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/(what ever $videocode is)&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/(what ever $videocode is)&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object> Please help! Quote Link to comment https://forums.phpfreaks.com/topic/89229-why-isnt-this-working/ Share on other sites More sharing options...
Aureole Posted February 3, 2008 Share Posted February 3, 2008 Changing it to... <?php $video = '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/' . $videocode . '&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $videocode . '&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>'; ?> ...should do the trick. Quote Link to comment https://forums.phpfreaks.com/topic/89229-why-isnt-this-working/#findComment-456897 Share on other sites More sharing options...
john010117 Posted February 3, 2008 Share Posted February 3, 2008 Are you echoing the variable? Quote Link to comment https://forums.phpfreaks.com/topic/89229-why-isnt-this-working/#findComment-456936 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.