I am building a PHP detail page with a navigation list of
database records down the left side, and the middle will display
info for each of those records, so when one of the links on the
left is clicked, the page reloads and displays the relevent info.
Thing is, it's not doing it! It is still displaying the first
record of the db no matter what record is clicked.
I have a recordset for the navigation list, and I have a
recordset for the content; I have a 'go to detail page' set up on
the navigation recordset which posts to itself, ie. the same page
it is on already, and the url displays the correct record ID; the
page also has a 'move to specific record' behaviour which is based
on the content recordset, but it's not working.
What am I missing? Obviously, I am doing something wrong. Can
I not have content on a detail page where a DB driven link can post
to the same detail page?
Does that makes sense?
Mat