|
I have this php server side include which works great on linux:
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/header.php');
?>
I am trying to get it to work on a godaddy windows server (shared deluxe account) which does allow php, but I keep getting a "failed to open stream" error. Any suggestions on how to get this to work? Thanks in advance for any help.
|