This topic is locked

Child Links on View-Edit Page

12/14/2005 1:10:10 PM
PHPRunner General questions
prleo1 author

Admin,
Is there a simple way to place all child links from the list page to the edit/view page? For instance, I have 5 child tables linked to my personnel table, which is a master. As of current, all of the child links are on the personnel list page, which is taking up a lot of room on the list page.
PR

Sergey Kornilov admin 12/15/2005

Sure, you can modify WriteTableHeader and loopRS functions in _list.php file to remove unnecessary columns.

Then add links to child tables to View or Edit page.

Here is the sample link you can use:

<a href="child_list.php?masterkey=<?php echo postvalue("editid");?>">Child table</a>