Hey guys, I am using the following code to include an .html :
<?php
include('header.html');
?>
You can view the error(s) I'm getting by looking at the actual page :
[
updateyourblackberry.com...]
My header.html, navbar.html and footer.html are all in the /new/ folder, not in the /new/devices/ folder. I tried changing the code to
<?php
include('new/header.html');
?>
and some other variations with no luck. How do I change it so I can get these .html files that are located at www.updateyourblackberry.com/new/header.html and /navbar.html and /footer.html to appear?
Any help would be greatly appreciated.