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 ;)
Configuration: Windows XP
Firefox 3.0.9

2 réponses

  1. loocla Messages postés 206 Statut Membre 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
  2. 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