Con che codice posso avviare il download di un file? anche il download di un file php...
Ho già provato con questo codice:
Codice PHP:
<?
$file=$_GET['file'];
header ( "Content-type: application/octet-stream" );
header ( "Content-Disposition: attachment; filename=".$file.";" );
header ( "Content-Description: Download manager" );
header('Pragma: no-cache');
header('Expires: 0');
header ( "Content-Length: " . filesize ($file) );
readfile ($file);
?>
Solo che parte il download della pagina non del file scelto