Aaron Todd wrote: <snip>
<?php
$file = "/home/dlr/test/".$_GET['file']."";
if (file_exists(basename($file))) {
header("Content-Description: File Transfer");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($file));
@readfile($file);
} else {
echo "$file<br>";
echo basename($file);
echo "<br>No File Found";
}
?>
Belay my last post...you're using readfile and not fread.
Okay, what error is the script outputting? You should remove the '@' from in front of readfile() so that it will output an error if it's the problem.
-- John C. Nichel �berGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED]
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

