Click here to Skip to main content
15,880,891 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi guys... i would like to ask how do i pass my javascript array to php?
I have an array that got the result from a json_encode array like so

$.ajax({
type : "POST",
url : "includes/Filter.php",
datatype: 'json',
success: function(data){	

var obj = jQuery.parseJSON(data);
		
myArrayID= obj.ids;
}
});

now it retrieves the array just fine... but now i need to pass this array back to php and i want to retrieve it... how do i do that? by the way my array is an Associative array
Posted

1 solution

A neat little solution provided at Pass Javascript arrays to PHP (PHP recipe) [^].
 
Share this answer
 
Comments
Madzmar25 23-Feb-12 0:39am    
Yes i love it... thanks so much

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900