| 
<?php
include_once('incs/generate.class.php');
 $creator = new BeanCreator('127.0.0.1','root','noP4ss','','mysql');
 $creator->selectTables(); // here you can put ('mytable') or (array('mytable','mytable2'))
 $creator->save()->toZip();  // save and compress to ZIP file
 ?>
 |