Hi folks!
I'm trying to make a cascade filtering through multiple related pages, something like in the following picture:
Let me explain a bit: I want to obtain a list of students by filtering step-by-step county, city, college. That means from a starting search page - let say search.php - where I have a list of counties obtained by
by clicking on a county I want to have the list of cities from that county like search.php?county=name1, then by clicking on a city to get to list of colleges from that city, like search.php?county=name1&city=name2, then finally list of students from that college, like search.php?county=name1&city=name2&college=name3.
I have to admit, I couldn't "see" a way to obtain this...
Do you have any suggestions? Thanks a lot!
Best regards,
Nea Pandele
I'm trying to make a cascade filtering through multiple related pages, something like in the following picture:
Let me explain a bit: I want to obtain a list of students by filtering step-by-step county, city, college. That means from a starting search page - let say search.php - where I have a list of counties obtained by
- Code: Select all
<cms:pages masterpage='counties.php' />
... list counties with some bare info and a picture
</cms:pages>
by clicking on a county I want to have the list of cities from that county like search.php?county=name1, then by clicking on a city to get to list of colleges from that city, like search.php?county=name1&city=name2, then finally list of students from that college, like search.php?county=name1&city=name2&college=name3.
I have to admit, I couldn't "see" a way to obtain this...

Best regards,
Nea Pandele