View Single Post
Old 09-10-2002, 02:41 PM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,486
sde is on a distinguished road
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++;
}
sde is offline   Reply With Quote