[ PHPXref.com ] [ Generated: Sun Jul 20 20:18:29 2008 ] [ Siteframe 5.0.2 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> download.php (source)

   1  <?php
   2  // $Id: download.php,v 1.2 2005/08/26 05:30:24 glen Exp $
   3  // Copyright (c)2005, Glen Campbell. All rights reserved.
   4  // This file tracks downloads
   5  
   6  require_once  'siteframe.inc';
   7  
   8  $f = new File($_GET['id']);
   9  $f->set('num_downloads', $f->get('num_downloads') + 1);
  10  $f->update();
  11  
  12  header("Location: ".$f->get('file_path'));
  13  
  14  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]