summaryrefslogtreecommitdiffstats
path: root/uploadi/counter.php
blob: f93a91e30517c5dec3f433195c8289318bd4ede1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php

	include_once ('../function.php');

	$fn = $_GET['fn'];
	$fn = str_replace ("'", "", $fn);

	$result = sisplet_query ("INSERT INTO UlCounter (filename, timestamp) VALUES ('$fn', NOW())");
	header ('location: ' .$site_url .'uploadi/editor/' .$fn);
?>