Case:
Suppose we have two arrays(returned by queries)
$array1 and $array2 of different sizes for example (two cases here)
a>
Code: Select all
$array1 = array(1,2,3);
$array2 = array(1,2);Code: Select all
$array1 = array(1);
$array2 = array(1,2,4,5);How to accomplish this, any ideas.
Thanks in advance for the suggestions.