Diagram PHP
Who know some script in PHP to making diagrams like this:
Parent
|
-------------
| |
-------- Child
| |
Child Child
Re: Diagram PHP
bison wrote:
> Who know some script in PHP to making diagrams like this:
>
> Parent
> |
> -------------
> | |
> -------- Child
> | |
> Child Child
>
>
If you want to make graphical presentation, then gd is IMHO one of the better
options, that way you can create images on the fly.
Other alternatives would be to use pdflib or similar.
I don't know if there are any already written scripts that will do what you
want to do, but you have your buddy google.com that can help you to find a such.
--
//Aho
Re: Diagram PHP
> If you want to make graphical presentation, then gd is IMHO one of the
> better
> options, that way you can create images on the fly.
>
> Other alternatives would be to use pdflib or similar.
>
> I don't know if there are any already written scripts that will do what
> you
> want to do, but you have your buddy google.com that can help you to find a
> such.
>
> --
Yea GD and the best way to do it.
Re: Diagram PHP
Post removed (X-No-Archive: yes)