Search code examples
phpimportdata-migration

Easy and generic data migration/import with php?


I am building a php application that work on weather data and agricultural data. I wrote synchronization scrips for all the weather data providers of my users. The users can enter the agricultural data manually. However they usually also enter there agricultural data in other applications (Excel spreadsheet, proprietary applications,...).

I would like to build a tool to help my customers to easily mass import there agricultural data into my system from there other applications. It would be better if this tool can accept custom data format in order to limit the data transformation before the import.

Do you know any php tools/library/classes that could help me to build this without reinventing the wheel?

I know Talend data migration but I would like something completely integrated into my application like a wizard for my users.

Thanks!


Solution

  • If you don't know the exact format of the data your task is impossible. The closest that you can get is if you build a format specification yourself or if you build an API to your application and allow 3rd party users to insert data according to the specs of your API.