Well, when i'm trying to save some date via API with this code:
if ($input->post->submit_equipment && $input->urlSegment1=="equipment"){
$camera = array();
$camera = $input->post->camera;
$user->setOutputFormatting(false);
foreach($camera as $c){
$cameraRow = $user->camera->getNew();
$cameraRow->title = $c;
}
if($user->save()){
$session->redirect("/profile-edit/equipment/success/",false);
}
}
i got all my 3 repeaters filled with this data.
The other problem is when i try to create some data from the admin...look at the picture...Missing field...what ?













