thanks scott .. i thought there was another way... i guess it is just when you are generating an array inside the form itself.. kinda like a select field.
anyhow, here is the code that worked:
Code:
$i=0;
foreach($ob->questionArray as $each)
{
echo "<input type=hidden name=questionArray[$i] value=$each>";
$i++;
}