diff --git a/htdocs/sql/db_export.php b/htdocs/sql/db_export.php new file mode 100755 --- /dev/null +++ b/htdocs/sql/db_export.php @@ -0,0 +1,77 @@ +' . $strNoTablesFound . ''; + require './libraries/footer.inc.php'; + exit; +} // end if + +$checkall_url = 'db_export.php?' + . PMA_generate_common_url($db) + . '&goto=db_export.php'; + +$multi_values = '
'; +$multi_values .= '' . $strSelectAll . ' + / + ' . $strUnselectAll . '
'; + +$multi_values .= '

'; + +$export_type = 'database'; +require_once './libraries/display_export.lib.php'; + +/** + * Displays the footer + */ +require_once './libraries/footer.inc.php'; +?>