Web Hosting Talk







View Full Version : PHP tree diagram class?


sbalmos
11-06-2004, 02:53 PM
Hi all,

Was wondering if anyone knew of the existence of a PHP class for drawing tree diagrams? Specifically, for a class project, I'm writing a simple predictive parser in PHP, and the prof wants a graphical diagram of the input string's parse tree. I can do it in GD, I know... but the calculations can get pretty nasty for figuring out spacing of tree diagram nodes, etc.

Anyone know of anything out there that can handle this, that I can drop into my code?

Thanks!

--Scott

drak
11-06-2004, 06:12 PM
Maybe this is what you want?

http://www.phpclasses.org/browse/package/1600.html

Drak

sbalmos
11-06-2004, 07:13 PM
Looks like that will do it. Thanks!

--Scott