Advertisement
whyisjake

Untitled

Jul 5th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php if (!$_POST) { ?>
  2.  
  3. <form action="" method="post">
  4. YouTube URL:  <input type="text" name="url" /><br />
  5. <input type="submit" name="submit" value="Submit me!" />
  6. </form>
  7. <?php }  ?>
  8.  
  9. <?php
  10.  
  11. error_reporting(E_ALL);
  12.  
  13. if ($_POST) {
  14.     $request_url = 'http://www.youtube.com/oembed?url='.urlencode($HTTP_POST_VARS['url']).'&format=xml';
  15.     $xml = simplexml_load_file($request_url) or die("feed not loading");
  16.     echo $xml->html[0];
  17. }
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement