arreche
arreche

Reputation: 347

Do you know any PHP script or library to export/import dumps of MySQL databases?

I don't have shell access so can't use the mysqldump command Also the use of sentences like SELECT * INTO OUTFILE are restricted

SOLVED: I've found several PHP scripts/libraries/classes in google code.

Upvotes: 1

Views: 534

Answers (1)

2ndkauboy
2ndkauboy

Reputation: 9377

Than a SELECT * FROM and afterwards a file_put_contents()

Otherwise explain why not doing one of the following!

What do you want the output to look like? If it should look like a regular dump file, that good luck in writing your own PHP to mysql dump file converter.

Upvotes: 2

Related Questions