View file wapirate/xhtml/getit.php

File size: 226B
<?php

$type = $_GET['type'];

$file = $_GET['file'];

$stp = $_GET['stp'];

if($stp==""){

$filex = "http://www.jamglue.com/$type/$file/download.mp3";

}else{

$filex = $stp;

}

header("Location: ".$filex);

	

?>