English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Actually I am running a site where new members can join with the reference of a existing member this is how a tree structure of members are formed.
So, I want a PHP program for my website to mangage and display names of my site members in a hierarchical tree structure.
So, I was looking for any complete php software (like phpbb ,SMF etc) where I can manage such structure of names in a web-based manager. And with a search option to search names and display that name with complete tree path for that member name.
Best would be a graphical hierarchical chart to disply members and their sub-members with the search option, of not at least like a windows directory structure with search option.

If you know any such PHP package to sute my purpose please tell. Or any other type of package (may not be for that job) which can be used to solve that specific purpose.

2006-11-29 03:18:53 · 3 answers · asked by Cool Solve 2 in Computers & Internet Programming & Design

I would manually enter the whole members data, so i don't need a specific platform which will need my exixting data structure to fit. It can have it's own database.

2006-11-29 19:15:28 · update #1

3 answers

An existing program (assuming it exists and is available on reasonable terms) won't do you much good, because you need something that works with your data structure...

2006-11-29 04:23:58 · answer #1 · answered by NC 7 · 0 0

Repying to dhvrm's comment. You should not use mysql_pconnect instead of mysql_connect. mysql_pconnect causes apache to create a new and constant connect to mysql the entire time the user is on your website. It will increase server and database load. You should connect to the database and release it as soon as you’re done. Plus, If you have limited mysql to only 50 connects this means only 50 people could use your website at once. Instead of 50 connections to the database at once.

2016-03-29 15:46:39 · answer #2 · answered by Anonymous · 0 0

I doubt you will find anything that specific that you could just plug in and go.

It sounds to me like you need each member to have a single association to whoever invited them and multiple associations to members they invite.

If you feel like writing your own implementation of this, read up on storing hierarchial data in a database: Have a look at how CakePHP does it here (http://manual.cakephp.org/chapter/models) search for HABTM.

2006-11-29 15:03:34 · answer #3 · answered by Poncho 3 · 0 0

fedest.com, questions and answers