-
nothing,
this is a copy/paste
PHP Code:
<?php
$url = http://www.en4cer.co.uk/downloads/' . $_SERVER['QUERY_STRING'];
header("Location: $url");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ades Design</title>
</head>
<body>
<p>
Warning: your browser does not support
HTTP correctly. It is likely that a large portion
of the Web will be broken for you.
</p>
<p>
You should have been sent to <a href="<?php print $url; ?>"><?php print $url; ?></a>.
</p>
</body>
</html>
-
Ah! I apologise. I missed a single quote (') before http: on the second line. I've edited the original.
-
hmm, ok thats not worked..
basically what happens is
on the website, it shows the name of the download then the amount of downloaded times...
ie.. DOWNLOAD1 - 5641
you click on DOWNLOAD1 and it takes you to a promt to enter a word..
once you enter the work it takes you to the actual file and starts the download
everything works up until the locating the file..