So instead of <? include("../php-includes/inc_header.php"); ?>
I use this ?
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
$path .= "/php-includes/inc_header.php";
include_once($path);
?>
I still can't see any images on the header in Dreamweaver... will this show up on the server instead?