You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
324 B

<?php
// Database config & class
$db_config = array(
"servername"=> "localhost",
"username" => "root",
"password" => "",
"database" => ""
);
if(extension_loaded("mysqli")) require_once("_inc/class._database_i.php");
else require_once("_inc/class._database.php");
// Tree class
require_once("_inc/class.tree.php");
?>