Hi,
I have a buch of orm variables called, $data1, $data2, $data3, $data... etc. i am trying to add them recursivly to $alldata. is a way other than manually doing this?
if (!data1){
$alldata=$alldata.$data1
}
if (!data2){
$alldata=$alldata.$data2
}
for each variable?