I have got this array
var Age=[$(".AJcountry").find(".focus").html()];
and this AJAX
$.ajax({
type: "GET",
url: '../connect.php',
data: "CountS=" + Age,
success: function (dataa)
{
alert(dataa);
}
});
But it only return the last selected item.How can i send to PHP everything inside array
console.log(Age);return ?