
Tobias Breunig - 2009-03-24 14:16:07 -
In reply to message 1 from sunil kumar
Hi,
the File "class.database.php" is my little Helper Class, that i used in all my Projects. I will post ist into the Example Files.
But u can use the NestedSet class without the class.database.php-File. Thats just an example. Just edit this Lines:
----
require 'lib/class.database.php';
require 'lib/class.nestedset.php';
$db = new Database;
----
to:
----
require 'lib/class.nestedset.php';
$db = new mysqli('your host','your user','your pass','your db name');
----
Regards, Tobias