Jump to content

Why isn't this working?


alexville

Recommended Posts

$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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.