submit form =>PHP=> renvoi ficher à saugarder (browser n'afficher pas) - PHP - Programmation
Marsh Posté le 13-03-2003 à 22:17:36
Skylight a écrit : Header() |
et je met quoi dans header ?
un truc du genre "application/octet-stream" ?
Marsh Posté le 13-03-2003 à 22:19:41
C'est bon, j'ai trouvé :
http://www.php.net/manual/en/function.header.php
merci
Marsh Posté le 13-03-2003 à 22:33:14
un exemple de "work around" pour un bug connu de MSIE 5.5sp2 et même IE6 est :
header("Content-type: application/force-download" );
if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE" ))
header("Content-Disposition: filename=$myfile" . "%20" ); // For IE
else
header("Content-Disposition: attachment; filename=$myfile" ); // For Other browsers
Marsh Posté le 13-03-2003 à 22:11:10
Je cherche à ce que quand l'utilisateur 'submit' un 'form' mon script PHP génère un fichier qui soit renvoyé à l'utilisateur sous form de fichier d'extention .end (EndNote). Je ne veux pas que le browser l'afiche mais qu'il prompte l'utilisateur à sauvgarder le fichier.
Comment faire ?