allright now I am not getting it to return anything however when I echo the arrays out individually from the function I get the data expected.
Here are the assignment and return portion of my function
earlier in the code both
$storeClearence, $storeAuthorize are arrays storing data and as I said if I echo them out from within the function I get thedata so I know it is stored in the array.
$clearenceInfo = array($storeClearence, $storeAuthorize);
return $clearenceInfo;
}// Function
echo $clearenceInfo[0][1];
What am I doing wrong?
Am I assigning the the arrays to $clearenceInfo wrong?
Am I returning $clearenceInfo wrong?
Thanks
[EDIT]
Disregard I figured it out I was tryiong to return the variable from within the function rather then the variable that I was assigning the returned values to Thanks all[/EDIT]