ppowell:
Well, you don't give a whole lot of information such as are you trying to get the information from one MYSQL database to another MYSQL database or are the databases different DBMS?
I assume that since you are in this forum you are trying to use PHP to do this???
One way that comes to my mind is to read the information from the first database and write it into a CSV (comma separated value) flat file.
Then you can create variables for the different CSVs in the flat file.
Then using those variables you can assign the CVSs to the specific fields of the second database and write the information into the second database.
It is kind of the long way around, but sometimes you gotta do what you gotta do.
Hope this helps.
Good Luck