A
|
alang 9/23/2007 |
In the visual editor page, set the first_name/last_name as "custom" on the "View as" tab. Enter the following: |
D
|
dorlisa author 9/24/2007 |
In the visual editor page, set the first_name/last_name as "custom" on the "View as" tab. Enter the following: $value = "<a href=/_members_view.php?editid1=".$data["memberID"].">".$data["first_name"]."</a>"; Substitute "memberID" for what you have called your keyfield of the members table. Using this technique you effectively display any of your fields as a hyperlink and then have this hyperlink jumping to other screens (list or view are the most common).
|