Hi,
I'm new to PHP. I am trying to use the include function for my guestbook page which is located in the guestbook directory of my website. The php file in my main directory, called table.php for now, contains the following code:
<HTML>
<BODY>
<?php include "guestbook/index.php"?>
</BODY>
</HTML>
Now it seems to work to some extent in that I can see the guestbook. However none of the images in the guestbook show up. If I right click any image and go to the properties it says
http://www.sitename.org/img/image.gif
instead of the correct
http://www.sitename.org/guestbook/img/image.gif
Does anyone know how I can fix this? Thank you very much!