J'ai ce code jquery :
var myarr = ["aa","ss","dd"];
$.ajax({
url: "proces.php",
data: "arr="+myarr,
type: "POST",
success: function () {
alert("data is send");
}
});
Je vois le message data is send
mais en proces.php
J'ai le code suivant
$str = '';
foreach ($_POST['arr'] as $k=>$v) {
$str = $str.$v;
}
$hand = fopen("t.txt","w+");
fwrite($hand,$str);
et dans le fichier t.txt
rien n'est écrit, dites-moi où je me trompe ?