I have array with more than 10 records in it and i want to pass it to the controller but it pop ups the error saying bad request.
Following is my code:
$('#submit_fourth').click(function(){
//send information to server
$.ajax({
type: 'POST',
url: '<?php print site_url('orgnization/storeData'); ?>/'+fields
});
});
As shown in the code, fields is the array containing data. Now following is the error message in the firebug.

Any help ?