Trier un tableau excel avec php

nicekiller -  
 nicekiller -
Bonjour tout le monde j'aimerai savoir si c est possible de trier un tableau excel via PHP et cela en traduisant le code VBA suivant:
Code :

Range("A5:J12").Select
Selection.Sort Key1:=Range("J5"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal

Merci d'avance pour votre aide ;)
A voir également:

2 réponses

loocla Messages postés 180 Date d'inscription   Statut Membre Dernière intervention   18
 
Déja pour inclure à une page php faut mettre ca il me semble :
 <?
header("Content-Type: application/vnd.ms-excel; name=nomfichier.xls");
header("Content-disposition: attachment; filename=nomfichier.xls");
?>
0
nicekiller
 
je cherche une conversion en langage PHP de ce code VBA:
Range("A5:J12").Select
Selection.Sort Key1:=Range("J5"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
0