예제 #1
0
    exit;
}
if (isset($_GET["import-compiled"])) {
    import_fetchmail_compiled_rules();
    exit;
}
if (isset($_GET["fetchmailrc"])) {
    fetchmailrc();
    exit;
}
if (isset($_GET["SaveFetchmailContent"])) {
    SaveFetchmailContent();
    exit;
}
if (isset($_GET["export-table"])) {
    export_table();
    exit;
}
if (isset($_GET["restore-root"])) {
    restore_root();
    exit;
}
while (list($num, $line) = each($_GET)) {
    $f[] = "{$num}={$line}";
}
writelogs_framework("unable to understand query !!!!!!!!!!!..." . @implode(",", $f), "main()", __FILE__, __LINE__);
die;
function execute_debug()
{
    $unix = new unix();
    $php = $unix->LOCATE_PHP5_BIN();
예제 #2
0
function export_all_tables()
{
    $q = new mysql_squid_builder();
    $tables = $q->LIST_TABLES_CATEGORIES();
    while (list($table, $row) = each($tables)) {
        export_table($table);
    }
}