<?php
include(substr($_SERVER['DOCUMENT_ROOT'],0,strrpos($_SERVER['DOCUMENT_ROOT'],'/')).'/index.php');
?>
Should work, but you really shouldn't need to do that. Does it throw any errors? You could try the following.
<?php
$file='../index.php';
if(is_file($file)) {
echo("Well it's definately a file<br />\n");
if(is_readable($file)) {
echo("and it's readable!!<br />\n");
} else {
echo("Oh, but it's not readable by apache. Guess I need to change the permissions.");
}
} else {
echo("It's not even a file!!<br />\n");
}
?>
HTH
Bubble