I'm working with a content management system where all the pages are stored as a single html file. The system calls the position on the page somehow by using ?Category after the url. Now, I'm used to ?Category=CategoryName, but I don't get how just ?Category works.
If I put ?Cat=CategoryName in the url, the page data doesn't pull. But I need to know what category it is. Sooo... any ideas? My alternative is to read through all the pre-existing code and try to figure it out, but I'd rather try something like
If Home {
do something
}
as opposed to the usual:
If Category == "Home" {
do something
}