Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. index.html:
  2.  
  3. <!DOCTYPE html>
  4. <html lang="pt-BR">
  5. <head>
  6. <meta charset="utf-8"/>
  7. <title></title>
  8. </head>
  9. <body>
  10. <form method="post" action="getlink.php">
  11. <input type="text" value="" name="url" id="url" /><p/>
  12. <input type="submit" value="Baixar"><br/><br/>
  13. </form>
  14. </body>
  15. </html>
  16.  
  17. getlink.php:
  18.  
  19. <?php
  20.  
  21. if (!empty($_POST['url'])) {
  22. $html = file_get_contents($_POST["url"]);
  23.  
  24. $url_360p_split1 = explode("html5player.setVideoUrlHigh('", $html);
  25. $url_360p_split2 = explode("'", $url_360p_split1[1]);
  26. echo "$url_360p_split2[0]";
  27.  
  28.  
  29.  
  30. }
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement