Jump to content

Creating Family Tree in php


samra

Recommended Posts

I want to create a family tree site in php. That site should be able to display the parent and child nodes along with their spouse. I also need to display relation between the member of any nodes level to any other person on the basis of their common ancestor in the tree. Now am totally at loss regarding the db schmea. so far i have created a table named family_tree which include the following fields:

family_id

name

spouse_name

parent_level (e.g 1,2,2 so on nodes levels)

children

it all seems quite vague sort of thing to me. dont know where exactly should be proceeding. how many tables i will be needing? how these tables should be related? please reply. thanks

 

Link to comment
https://forums.phpfreaks.com/topic/297772-creating-family-tree-in-php/
Share on other sites

perhaps

+---------------+
|  family_tree  |
+---------------+
| family_id     |
| firstname     |
| surname       |
| gender        |
| spouse_id     |
| mother_id     |
| father_id     |
+---------------+

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.