0084d336
Administrator
Importers CRUD
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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");
?>
|