Listing page keeps going to first record

3 posts by 2 authors in: Forums > CMS Builder
Last Post: September 25, 2008   (RSS)

By chassa2556 - September 24, 2008

I have my 'see more' link going to

<a href="involvedDetail.php?<?php echo $involvedRecord['num'] ?>"> see more </a>

I have set it up so it all goes to one section with a category filter. The trouble is it keeps going to the first record. This is even though I am on the second or third record and am expecting it to go to the relating detail page.

This is my header code
list($involvedRecords, $involvedDetails) = getRecords(array(
'tableName' => 'involved',
'where' => ' category = "Join Us" ',
));

Re: [Mr Jim] Listing page keeps going to first record

By chassa2556 - September 25, 2008

Thanks so much Mr Jim - that worked just fine. Its working fine now this filtering by category seems to unlock a way of using fewer templates - which makes big time savings.