I am trying to include a page using php include.
The problems is I need to include a query string and the include call fails, i.e.:
<?php include($urlroot.'/discounts/relatedcontent.php');?>
retrieves that page successfully but when I try
<?php include($urlroot.'/discounts/relatedcontent.php?tag=health');?>
the php include call fails.
How come and what can I do about it. I need to pass the value of tag to the $urlroot.'/discounts/relatedcontent.php'
page