Hi everyone. I've been using PHP, and I'm still learning as I go.
I am having problems with paths (especially with image files) in the includes I create. I'm not even sure if I can write links to images in a separate folder in an include file that resides in a separate folder. If I'm not trying to do something I'm not supposed to, how do I make the image display in my final page.
In my base page I have this:
<div id="navigation"><?php include('includes/navigationbar.inc.php'); ?></div>
and in the navigationbar.inc.php file, I have specified an image file lilke this:
<img src="../images/navlogo.jpg" />
Everything shows in the page except for the image. Any ideas?:queasy: