Use in your WEB projects databases that you have created with ae
thanks to aem PHP parser.

using it

<?php // include the downloaded file:require_once('AePHP.php'); // parsing the database: $RecordsStock = AePHP::parse("Records Stock.aem"); // displaying parsed data: $RecordsStock->info(); // loading the name of the 5th Artist// (note that rows begin at index 0): $name = $RecordsStock->getCell("Artist",4); // exporting the aem icon: $RecordsStock->exportIcon("destFolder"); // exporting media cell: $RecordsStock->exportMediaCell("Cover", 0, "destFolder","2048M"); ?>