• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Downloading script needed

LukeySD

New Member
I need a php script , like for downloads on my site .. like u know "id=1&file=aamama.zip"
and i need it to tell me how many downloads,ips,etc :p
and for it to stop of site linking!!!
 
Originally posted by LukeySD
I need a php script , like for downloads on my site .. like u know "id=1&file=aamama.zip"
and i need it to tell me how many downloads,ips,etc :p
and for it to stop of site linking!!!

it should be easy to make

<?
if ($id == "1") {
include "http://www.urltosite/files/$file";
}
elseif {
echo "File not found";
}
?>

would do what you want ....

however to log the IP and how many times you downloaded it would be abit harder .... and alot more harder in perl ... well for me anyways :classic2:
 
Last edited:
Back
Top