<form id='myform'>
<input type='hidden' name='to[]' value='1' />
<input type='hidden' name='to[]' value='2' />
.. etc ..
.. rest of you're form ..
</form>
jQuery डेटा बदलें:.. भाग:
data: $('#myform').serialize()
फिर आप में हैं PHP:
foreach ( $_POST [ 'to' ] as $num )
{
// do something with $num;
}
कुछ ऐसा विकल्प है?