7 lines
195 B
PHP
7 lines
195 B
PHP
<?php
|
|
// this is your path to minetest:
|
|
$GLOBALS['path'] = 'D:/games/minetest/minetest-0.4.12';
|
|
|
|
// this is the name of your SQLite3 database file
|
|
$GLOBALS['db'] = new SQLite3('data/wiki.db');
|
|
?>
|