hi, sorry I'm a newbie, but I got great help the last time from phpbuilder!
I have manage to intrgrate PHP onto a single directory or folder, but when use PHP from another folder (eg. "things") I have problems when I try to include HTML files from the previous folder (eg. "root")
this is the code I use in a php3 file that resides in "things" but when I try to call up a "..\navigation.html" file that resides in "root" - it works but the images that the nav.html refers to don't turn up. How can I get the php3 residing in things to recognise the images that "..\navigation.html" refers to?
######things/things.php3
<body>
<table width = "95%" cellpadding="20">
<tr>
<td valign="top" width = "40%">
<?php include "../navigation.html"; ?>
</td>
<td>
<?php include "things.html"; ?>
</td>
</tr>
</table>
</body>