I have array with data.
$data[1] = 1
$data[2] = 2
$data[3] = 3
etc
How I can push this data in ~ 5 tables of Joomla, which haves only part of columns (1,2; 2,3; 3,1 etc)? I want do:
foreach ($tables as $table)
{
push $data;
}
Your ideas? Thank you!