Advertisement
Guest User

Untitled

a guest
May 12th, 2017
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. header("Content-disposition: attachment; filename=list.m3u");
  3. header("Content-type: application/text");
  4. $usuario = $_GET['usuario'];
  5. $clave =   $_GET['clave'];
  6. $url =  "http://iptvchile.net:8000/get.php?username=".$usuario."&password=".$clave."&type=m3u_plus&output=ts";
  7. readfile($url);
  8. exit();
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement