$export_type, 'single_table' => isset($single_table))); /* Fail if we didn't find any plugin */ if (empty($export_list)) { PMA_Message::error( __('Could not load export plugins, please check your installation!'))->display(); require './libraries/footer.inc.php'; } // If the form data is being loaded from GET data, decode it foreach($_GET as $name => $value) { if(is_string($value)) { $_GET[urldecode($name)] = urldecode($value); } } ?>
' . "\n"; } echo '' . "\n"; // If the export method was not set, the default is quick if(isset($_GET['export_method'])) { $cfg['Export']['method'] = $_GET['export_method']; } elseif(!isset($cfg['Export']['method'])) { $cfg['Export']['method'] = 'quick'; } // The export method (quick, custom or custom-no-form) echo ''; if(isset($_GET['sql_query'])) { echo '' . "\n"; } elseif (! empty($sql_query)) { echo '' . "\n"; } ?>

' . __('Database(s):') . ''; } else if($export_type == 'database') { echo '

' . __('Table(s):') . '

'; } if (! empty($multi_values)) { echo $multi_values; } ?>

Scroll down to fill in the options for the selected format and ignore the options for other formats.