dbprefix}system_log_%'"); while ($showtablerow = mysql_fetch_array($result)) { //To obtain time of archival $log_time = explode("{$CONFIG->dbprefix}system_log_", $showtablerow[0]); if ($log_time < $ts) { //If the time of archival is before the required offset then delete if (!mysql_query("DROP TABLE $showtablerow[0]")) { $FLAG = 0; } } } //Check if the appropriate tables have been deleted and return true if yes if ($FLAG) { return true; } else { return false; } }