hi,
I'm fairly new to drupal development, so I need some opinions on how to make a certain module.
I have a module with which you can add businesses to a database table. Every business belongs to a category. So for example, i have businesses called Microsoft, Oracle, Zend and they belong to the Software category.
Since I only have a couple of categories (4 or so), I've created a new content type, and added these 4 categories with this content type.
So far all is well because i can get to do mywebsite.com/software, mywebsite.com/hardware, mywebsite.com/other, etc
Now what I want to do is, I want to list the software businesses under mywebsite.com/software, so when a user clicks on Microsoft under the mywebsite.com/software page, it will link to mywebsite.com/software/microsoft. Actually it will be more complicated than that because I want to be able to filter on country for example, so you can have mywebsite.com/software/us and then select microsoft from that page, which will link to mywebsite.com/software/us/microsoft.
I'm wondering how to best go about making this in Drupal. I have a couple of solutions in mind, but I'm not sure which one is better.