I am trying to call a function from include
file but it does not work and no errors shown.
include file: engine.php
<?php
function idout(){
print $QUERY_STRING;
}
?>
parent php file: test3.php
<?php
include("engine.php");
idout();
?>
and this request does not print anything
not even errors.
localhost/test3.php?abc