I have a problem.
I'm using the code below to create an array:
$arrayvalue=array($value1, $value2, $value3);
And that works fine.
What I now need to do is to build it seperately, Eg something like
$arrayvalue=array($value1);
$arrayvalue=$arrayvalue + array($value2);
But that doesn't work. Does anyone have any idea how to do this?
Thanks