[eluser]Alface[/eluser]
[quote author="OverZealous" date="1256706587"]@Alface
Could you please reword your question? I am having difficulty understanding what you are asking. Thanks.[/quote]
You told me to make an array of objects, and I wanna know if there is a way to put all 'link' on a single object of Video, and just save it like this:
Code:
$va->save($v);
And result on several entries on data base..
thanks
I created a function extending the array extension:
Code:
function from_array_all($data, $fields = '', $save = FALSE){
foreach($data as $subdata){
$this->from_array($subdata, $fields, $save);
}
return $this;
}