DMXzone Database Connector PHP Support Product Page
Answered
Master-Detail on separate pages
Asked 05 Mar 2015 01:47:10
1
has this question
05 Mar 2015 01:47:10 mark c posted:
HI. I am trying to create a master detail page. I followed the example listed and was able to recreate it. In my example i have the master page as my index.php page and the detail page as view.php. I placed a button on the master page and link it to the detail page. I can not get the information to filter based on the id and display on the detail page. Appreciate any help
Mark
Replies
Replied 05 Mar 2015 09:15:07
05 Mar 2015 09:15:07 Teodor Kuduschiev replied:
Hi Mark,
all you need to do is to pass the id from your index.php page as an url parameter, for example:
And on your view.php page you just filter the data source by an url parameter ID.
all you need to do is to pass the id from your index.php page as an url parameter, for example:
<a href="view.php?ID={{TheIDBinding}}">Link</a>
And on your view.php page you just filter the data source by an url parameter ID.
Replied 06 Mar 2015 01:14:55
06 Mar 2015 01:14:55 mark c replied:
Thank you, it worked.