I have one echo join that prints the values of an array. But i need this echo join prints the first array + the second array.
Example: array1: 1,2,3 array2: a,b,c
Result: 1a,2b,3b etc..
I have a cicle while that analyzes all the records in a table and places them in the two arrays . How can I do to ensure that the echo join molds both the array? Thanks to all!
array_combineand worked out the answer, but then I see that your first array is not symmetrical to the second. You can't tell which value of the first array belongs to the one in the second. So more information is needed that will give you that link.