Bonjour à tous,
Je souhaiterais passer des variables numériques et un tableau (préalablement traité avec JSON.stringify).
J'ai affiché le tableau myTAB dans laconsole, il est ok.
Les variables idProd et idCat sont bien récupérées par PHP mais myTAB est vide.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 var myJSON = JSON.stringify(myTAB); $.ajax ( { url : "<?php echo $xhr; ?>", type : "post", data : "idProd="+prodId+"&idCat="+catId+"&myTAB="+myJSON, success: function(data){alert(data);} });
Le tableau est bien récupéré par PHP.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 var myJSON = JSON.stringify(myTAB); $.ajax ( { url : "<?php echo $xhr; ?>", type : "post", data : {myTAB : myJSON}, success: function(data){alert(data);} });
Mais du coup, comment faire passer le tout en une fois ?
Merci de votre aide.
Partager