Re: Problems including a file referenced from SERVER['DOCUMENT_ROOT']



monomaniac21 wrote:
Why does this find the file:

<img
src="<?=$_SERVER['DOCUMENT_ROOT']?>/images/viessmann_header_logo.gif">

But this does not?

$right_content =
$_SERVER['DOCUMENT_ROOT']."includes/content/content.php";

include $right_content;

Perhaps:
$_SERVER['DOCUMENT_ROOT']."/includes/content/content.php";

Note the extra slash.
--
Rik Wasmus


.