If you don't find it @ hotscripts.com - build it your self.
Make a defalut download page, where you make a php scripts submit the file information that the user is going to download... this way you only got one page.
Store the location to the file in a database.
Eg.
When a user clik a download link they are sendt to you download page... (download.php?file=1)
The make a query to your database where you:
1. retrive the location to where the file is stored
2. update the # of download field
To make a more advanced script you could create 2 tables - one with the file information and one with download info.
This way you can store information like who downloaded the file and when.
Fields needed:
Table1 - file information
id# - auto increment - primary key
LinkToTheFile
Table2 - downloads
downloadID# - auto_increment - primary key
downloadFILE (the same as id# from table1)
downloadIP (if you want to store the users IP address)
downloadTIMESTAMP (so that you can see when the file have beed downloaded)
With this information you can make a cool download script!
You can add more fields to make it more advanced - with eg. userid if the useres have to register to download the file, and so on!
Make sure to read about security before you publish your database driven webpage!