Total greenhorn question: I've got a system that asks users to answer a few questions on a simple form (/form). Once they submit their answers, I want another page (/form/custom) to load content depending on their answers ("You might find this interesting: ...").
The form users fill in sends data to a next page in a URL string: website.com/form/custom?name=Michael&question=yes&colour=blue etc.
I've read about the $_GET variable in PHP, but I'm not sure how I would use that to call tailored content. Say if question=yes and colour=blue I want to show content A, C, and D; but if question=no and colour=yellow I want to show content B, E, and F. Any tips on how to code this? Thanks a lot in advance!