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! 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. 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? Link to comment https://forums.phpfreaks.com/topic/89229-why-isnt-this-working/#findComment-456936 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.