Bonjour
je souhaite créer un fichier excel. Existe-t-il une bibliothèque ou un moyen très simple comme en asp?
Version imprimable
Bonjour
je souhaite créer un fichier excel. Existe-t-il une bibliothèque ou un moyen très simple comme en asp?
Salut,
pense à faire une ptit recherche sur le forum avant :wink: :
http://www.developpez.net/forums/vie...t=export+excel
En gros, tu écris ca:
Tu construis ton tableau html que tu stockes dans une variable php, puisCode:
1
2
3
4 header("Content-Type: application/vnd.ms-excel"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("content-disposition: attachment;filename=$date.xls");
Et ton fichier xls sera remplis par le tableauCode:echo $var;
a+