In PHP I\'ve build a webpage that uses include() for loading parts of the website.
However, I now ran into something like a problem:
When I use an url like: data-openo
Unless you've got a fully qualified URL, with protocol:// in the address, PHP will interpret what you pass into include()/require() as a LOCAL file, which means it's looking for a file on your drive whose name real is data-storingen.php?type=actueel, whereas you've only got data-storingen.php.
Since you're dealing with a local file, there is no support for query strings, and you have to strip that out of the "filename" you're passing to include().