bonjour,
j'ai un graux problème, lorsque je veut télécharger sur mon smart phone un ficher xls (générer par PHPexcel) cela me télécharger un fichier php du nom de ma page, alors que sur mon pc cela charge comme il faut.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 header('Content-type: application/vnd.ms-excel'); header('Content-Disposition:inline;filename=fichie.xls'); $writer->save('php://output'); exit();
Partager