By CoolCow on
Hello everyone,
I would like to make a list of data on my site and make it searchable, but i don't know how to achieve this.
In my case i have a list of delivery days linked to a area code & city like this:
area code city delivery day
-----------------------------------------
1234 city1 monday
5678 city2 tuesday
9759 city3 wednesday
On my site i would like to have a page where the visitors are able to lookup there delivery day.
On that page there must be an input field where they type there area code or the name of the city. When they hit search it should show what day we deliver.
Can this be done using an existing module?
Comments
Try CCK plus Views
You can create a content type for each delivery, comprising CCK-fields for "area code", "city", and "delivery day".
Then set up a view for your content type. Add the CCK-fields as fields and add filters for area code and/or city, which you expose, so users can enter an area code or city name to filter the list.
Groen