Master/Detail example
-
I have a GF survey that users complete.
i would like to have a list of users, that you can click through to then see the list of surveys they have done.
domain.com/list-all = shows all users
domain.com/list-all/?user=55 = shows all surveys for user 55
I have this code that does the above
if($user){ echo do_shortcode( "[stickylist id='1' field='41' value='" . $user . "']"); } else{ echo do_shortcode( "[stickylist id='1']"); }
but how do I link the first page to the second page? Do I have to create this myself or can stickylist do this?
Thanks
Kev
- The topic ‘Master/Detail example’ is closed to new replies.