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
data-openo
include in this way doesn't fetch a URL, it fetches a file from the filesystem, so there's no such thing as a query string.
include
You can do this, though:
$_GET['type'] = 'actueel'; include('data-storingen.php');