View Single Post
  #3  
Old 02-03-2006, 01:36 PM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default

If you want to use this with megabytes you can replace the code

Code:
$filesize = $_GET['filesize'];
with
Code:
$filesize = $_GET['filesize'] * 8388608;

Then use megabytes instead of bits in the url.

Code:
www.yoursite.com/download_time.php?filesize=38mb
Reply With Quote