d2tools/processFiles.php
2021-03-26 12:31:13 -06:00

31 lines
588 B
PHP

<?php
include "includes.php";
if (file_exists("d2im.db")) {
unlink(DB_FILE);
$files = new D2Files();
$parser = new D2TxtParser();
$db = new D2Database();
foreach ($files->files as $k => $v) {
$data[$v] = $parser->parseFile($v);
}
foreach ($data as $k => $v) {
$db->createTables($k, $v);
$db->fillsTables($k, $v);
}
}
// put in html redirect as backup, because
// for some odd reason windows gives
// an error on header() but linux does not.
?>
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0; URL=/" />
</head>
<body>
</body>
</html>