I have survey page that contains multipage element within containers and set printing array results to from using explode() or without it. The name of the multiple chekboxes element is "first_question". Here is the code i have placed to onsubmit event but no luck to output any from resuts though i was able to get them simply using $_REQUEST['first_question'].
How should i edit my code or forms to operate arrays "$form->data['var_name']" and not trying to intercept data.
screen
Regards
Maksym
How should i edit my code or forms to operate arrays "$form->data['var_name']" and not trying to intercept data.
screen
<?php
$array = $form->data['first_qestion'];
echo'<h2>' print_r( $array)'</h2>';
?>
Regards
Maksym