I have a PHP page that runs 2 separate queries from 2 separate tables. The queries could be produce the following.
Query1 Query2
========= =========
Month|Entered Month|Returned
Jan 20 Jan 2
Feb 50 Feb 4
Mar 100 Mar 34
Apr 24
Please note that 1 query may produce a month that is not in the other
What I would like to do is put this into a multi-dimentional array to output the following table on screen
Month Entered Returned
Jan 20 2
Feb 50 4
Mar 100 34
Apr 24
Thankin in advance for any help received
Query1 Query2
========= =========
Month|Entered Month|Returned
Jan 20 Jan 2
Feb 50 Feb 4
Mar 100 Mar 34
Apr 24
Please note that 1 query may produce a month that is not in the other
What I would like to do is put this into a multi-dimentional array to output the following table on screen
Month Entered Returned
Jan 20 2
Feb 50 4
Mar 100 34
Apr 24
Thankin in advance for any help received