I’m looking for a simple solution to offer some data export. I’d like to export all data belonging to the user logged in.
Further this data should be reimportable later.
What should I look for? Which approach might suit that?
many thnx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll have to write a custom script. Only you know your data model.
MySQL will let you use INTO OUTFILE with any select query that you write. With that you can export to CSV, which is just as easy to import (LOAD DATA)