I have a lot of data on the client side made up of mostly large arrays and I need to get this info back to the server and be able to parse it easily. I'm using jQuery on the front end and PHP (CodeIgniter) on the back end.
Right now I'm just POSTing one huge array using jQuery $.post. Is this a good idea or should I use several smaller ones?
Also, should I be using jQuery's ajax methods or is there something better than this?