views:

49

answers:

3

To reflect:

A-B
A-C
A-D
..
B-D
..

Is there an easy way to do this?

+1  A: 

Graphviz is a graph visualizer. It can be user to render graphs from string input.

Ikke
Can you be more specific about how to make a graph like I described?
+2  A: 

I don't know if it's possible using only PHP. But if you can install programs on the system running PHP you could use Graphviz's tools via exec.

Pikrass
PHP has the GD library, which you can make images, but you would have to calculate everything yourself.
Ikke
A: 

Prefuse is a flash based visualization package. You could probably use PHP to load your data into a Prefuse based visalization on a webpage. I'm assuming here that this for a web based application.

Binary Nerd