d2tools/processFiles.php

28 lines
528 B
PHP

<?php
include "includes.php";
$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>