Including with zip files?
Posted: Sun Feb 23, 2003 2:09 pm
Hello, I have this code so I can use it for downloading files
<?php
switch($download)
{
case '1':
include('./resources/backdrops/1.zip');
break;
default:
include('./blank.html');
break;
}
?>
But when i try index.php?download=1, it shows a bundent of words. Is this possible without using those browser heading stuff?
<?php
switch($download)
{
case '1':
include('./resources/backdrops/1.zip');
break;
default:
include('./blank.html');
break;
}
?>
But when i try index.php?download=1, it shows a bundent of words. Is this possible without using those browser heading stuff?