To download an xml file with php I write this :
header("Content-type: $mimeType");
header("Content-Disposition: $attachment filename=file.xml");
header("Content-Transfer-Encoding: binary");
$file = fopen("Directory/file.xml","r");
while ($ligne = fgets($file,10000)) {
echo $ligne;
};
fclose($ctg);
exit();
If I use Netscape any problems appear but with IE 5.5 I have this message
The XML page cannot be displayed
Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
Échec du téléchargement de la ressource spécifiée.
How I can download this xml file without changing the extension ?? Thanks