I\'ve got a php array:
$toField = explode(\",\", $ids); //Which looks something like \'24,25,26,29\'
I want to pass this array via jQuery AJAX
.. etc .. .. rest of you're form ..
jQuery change the data: .. part to:
data: $('#myform').serialize()
Then in you're PHP:
foreach ( $_POST [ 'to' ] as $num ) { // do something with $num; }
Something like this an option?