I want to just use a simple php include statement in an html module so that it provides sort of a link to a page that is straight html in another folder. This way I can allow others to edit that page without giving them access to the control panel in mambo.
Here is the code.
Code:
<?php
include("http://www.somesite/site/somefile.php");
?> It is not working. It is a link in the main menu and the page loads fine but the content that the include statement should include does not show.
Is there something against using php in the html module?
Is there another way to do this?
Thanks