• Hi,

    I would love to see a feature where you could credentials to an external database and export (=move) data. This is useful for backups, working with microservices, sharing data with test-environments, external scripts and more.

    Best
    Krupress

Viewing 1 replies (of 1 total)
  • Plugin Author algol.plus

    (@algolplus)

    Hello

    You can use HTTP POST ( pro feature) to send json to another script.

    This script should read raw stream, connect to db and insert/updated database records.
    Something like

    <?php 
    $data = json_decode( file_get_contents('php://input') , true);
    print_r($data);
    // connect to mysql and insert $data
    ?>

    thanks, Alex

Viewing 1 replies (of 1 total)

The topic ‘Feature Requests: Export to external database’ is closed to new replies.