Advertisement
whyisjake

Untitled

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