I'm pulling in data from two servers over two SSH tunnels. The tables on each of the servers have the same fields, 8 in total. I need a way to see if an entry that is in the first server is also on the second server. Out of 8 of the fields, 5 will have to match to be considered a match (but I need to pull all 8 in order to use them in the display). I know I could use temp tables in mysql on the server running the php script, but I'd much rather do this all in php.
All said, I haven't found a way to compare such large amounts of data matching on multiple fields all within php. Any help would be greatly appreciated!
All said, I haven't found a way to compare such large amounts of data matching on multiple fields all within php. Any help would be greatly appreciated!
Comment