I need to loop through a post array and sumbit it.
#stuff 1
This is how you would do it:
foreach( $_POST as $stuff ) { if( is_array( $stuff ) ) { foreach( $stuff as $thing ) { echo $thing; } } else { echo $stuff; } }
This looks after both variables and arrays passed in $_POST.
$_POST