I have a news utility in /news directory with scripts like news.php:
<?php ...
'include("./admin/config.inc.php");'.
...?>
In /home.htm i'm coding
<?php include("./news/news.php"); ?>
that throws an error because search the file
/news/config.inc.php not in /news/admin/...
How can i add to my /home.htm the execution result of /news/news.php without modyfing the utility code.
Thanks,
JMSE