File size: 1.57Kb
<?php
/*=================================================================#
# Script Name = Mobile Mp3 Ringtones Search Script #
# Script version = 1.1 #
# Licence = FREE to Distribute #
# Script Created By = RdxHere #
# Email : rdxmob@gmail.com #
# NOTE: #
# If you are facing any problem , please feel free to contact us. #
# Script by :- #
#======================== Rdx ============================#
#======================== Here ============================#
# #
#=================================================================#
*/
$rdx = ($_GET['down']);
$name = ''.str_replace(' ','%20',$rdx).'';
$fileName = strip_tags(basename($rdx));
$rdxhere = ''.str_replace('-(www.WhatsApp8.Com)','',$fileName).'';
$DLFile= "temp/$rdxhere";
$DLURL="$name";
$fp = fopen ($DLFile, 'w+');
$ch = curl_init($DLURL);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_exec($ch);
curl_close($ch);
fclose($fp);
include('./getid3/getid3.php');
include('./tag/tag.php');
$rajveer = 'http://'.str_replace(array('\\','//'),array('/','/'),$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/'.$DLFile);
header('Location: '.$rajveer, true, 301);
?>