ok, maybe I am not approaching this the best way. What I want to do is pull the data from both tables and display them as if they were one. I don't want to physically merge them, but as far as the display is concearned I want them to look as if they are coming from one database.
So all the fields from table1 will be pulled and displayed (total is 153) and all the fields for table2 (total is 10) will be displayed. There is no direct relation between data. So I should get a result of a total of 163.
They do have common field names such as clientId, and aType, and date. I am using mysql_fetch_array to pull these so the field names should be fine.
I could probably just loop these into an array but I actually have close to 30 fields and I was hoping this might be the most effecient.
Let me know if I am doing this all wrong, any recommendation would be great. Thanks for your time.