PHP Classes

File: tree_sub.php

Recommend this page to a friend!
  Classes of Roberto M.   Tree AJAX   tree_sub.php   Download  
File: tree_sub.php
Role: Auxiliary script
Content type: text/plain
Description: Demo file, secondary file to tree.php
Class: Tree AJAX
Show a tree of nodes opened dynamically with AJAX
Author: By
Last change:
Date: 16 years ago
Size: 385 bytes
 

Contents

Class file image Download
<?
/*
Class: Tree Class
Developed by: Roberto Morales Olivares | roberto@formatodigital.com
Creation date: 2 / Septiembre / 2007
Funtion(es) realizada(s): Demo tree.
Comments: This class generate a dynamic tree ajax directory of items retrieved from MySQL dabatase tables.
*/
?>
<?
   
include("classes/class.tree.php");

   
$tree=new Tree($_POST["id"]);
   
$tree->display();
?>