Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- include 'func.php';
- $id=$_GET['id'];
- $grab=json_decode(ngegrab('http://api.soundcloud.com/tracks/'.$id.'.json?client_id=c435ec96ae345d5ce32496d339fc291d'));
- $dl=''.getlinkdl($id).'';
- $nama=$grab->title;
- header("Content-Type: audio/mpeg");
- header('Content-Disposition:attachment; filename="'.$nama.'.mp3"');
- readfile("$dl");
- header("Content-Transfer-Encoding:binary");
- ?>
- ------------------------------------------------------
- untuk link download :
- <a href="download/'.$id.'.mp3">Download</a>
- ------------------------------------------------------
- kode untuk .htaccess
- RewriteRule ^download/(.+)\.mp3$ load.php?id=$1 [L]
Add Comment
Please, Sign In to add comment