Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create a php file with $_get command for facebook video embed generator. Please help me with it. The code which is not working is written down:

<?php
echo "<object width="400" height="224" >
      <param name="allowfullscreen" value="true" />
      <param name="allowscriptaccess" value="always" />
      <param name="movie" value="' . $video_url . '" />
      <embed src="http://www.facebook.com/v/'.$_GET["id"].';" type="application/x-    shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="224">
      </embed>
      </object>";
?>

Example: If the facebook video id is: 10150257497405484 The url should be: http://www.domain.com/embed.php?id=10150257497405484

share|improve this question

1 Answer

up vote 3 down vote accepted

You've got mis-matched quotes

Try ...

<?php
echo '<object width="400" height="224" >
      <param name="allowfullscreen" value="true" />
      <param name="allowscriptaccess" value="always" />
      <param name="movie" value="' . $video_url . '" />
      <embed src="http://www.facebook.com/v/' . $_GET["id"] . ';" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="224">
      </embed>
      </object>';
?>
share|improve this answer
many many thanks – eham2011 Jul 10 '12 at 11:34
@eham2011 you're welcome. If this solved your problem, please accept as the correct answer when you're able to do so. Thanks – Basic Jul 10 '12 at 11:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.