Posted by Chuck Anderson on 05/08/06 21:08
TristaSD wrote:
>>I'm trying to point to an include file from php like so:
>>
>><?php require('/main/includes/nav_stripe.php');?>
>>
>>That approach is perfectly fine when trying to point to a folder
>>INCLUDES inside folder MAIN on the root IN HTML. However, php is
>>producing errors.
>>
>>Is there a solid safe way to reference a file/folder regardless of how
>>many levels up or down it is?
>>
>>
>>
Set the include_path configuration directive to an absolute path (where
you then keep your include files) and then all you need do is include
the filename (with no path).
--
*****************************
Chuck Anderson • Boulder, CO
http://www.CycleTourist.com
The world is my country,
Science, my religion.
*****************************
[Back to original message]
|