Possible Duplicate:
Passing JavaScript Array To PHP Through JQuery $.ajax
Can I pass an array to a php file through JavaScript using AJAX? In my application code JavaScript builds the parameters based on user input, and then an AJAX call is made to a processing script.
For example, if the processing script url was process_this.php the call made from JavaScript would be process_this.php?handler=some_handler¶m1=p1¶m2=p2¶m3=p3
Could I do something like this?:
process_this.php?handler=some_handler¶m1=[array]
Thanks.