mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
14 lines
305 B
PHP
Executable File
14 lines
305 B
PHP
Executable File
<?php
|
|
require(dirname(__FILE__) . "/../bin/config.php");
|
|
require_once(WWW_DIR . "/lib/framework/db.php");
|
|
|
|
$db = new DB;
|
|
|
|
$arr = array("parts", "partrepair", "binaries");
|
|
|
|
foreach ($arr as &$value) {
|
|
$rel = $db->query("truncate table $value");
|
|
printf("Truncating $value completed.\n");
|
|
}
|
|
unset($value);
|