|
|
| |
1. Funtion to delete nodes |
|
Reply |
|
|
 Fèlix Casanellas | 2011-08-24 13:06:26 |
Maybe the autor can add a function to delete nodes like that:
function DelNode($node) {
$node_array = $this->nodes;
unset($node_array[$node]);
$this->nodes = $node_array;
}
See you!
Fèlix |
|