Hi,
I have got 4 results out of 4 different sql queries
$row1 = mysql_fetch_array($result1);
...
$row4 = mysql_fetch_array($result4);
all arrays have got the same keys.
I want to merge those 4 results to one $row, using one key (author_sort) to sort the rows alphabethically.
How can I manage it and if yes, is it possible also with php3???
Thank you for help
Gabi