Hi,
I have a mysql database containing item names, descriptions and ids.
I've used the mysql_fetch_array to get all of this data out and stored it into arrays.
I have 3 arrays now, name, details and ids.
I want to output the data so that it shows id - name - description for each going through the array. But to do this I'd need to join the arrays.
I tried array_merge but this just left me with an output of all the ids then all the names then all the descriptions.
I want it to join the data together.
How can I do this?
Thanks a lot,
Matt