Does any one know about any script that will work like http://www.genoom.com family tree?
Or can you guys give me any ideas about the database table structure they used to make the tree like this?
And how are they displaying family member boxes and lines?
Please let me know ASAP.
[EDITED]
I have tried table structure like this:
-----------------------------------------------
TREE
-----------------------------------------------
ID | PARENTID | PARENT_RELATION | NAME
-----------------------------------------------
1 | 0 | | My Father
2 | 1 | Father | It is me
*tree(id int auto increment, parentid int, parent_relation varchar, name varchar)*
In first record it shows tree will starts with 'My Father' and then traverse and will display 'It is me'. And whole thing I tried in PHP by using a recursive function. But I stuck when I am trying to display connecting lines between nodes.