Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
How do i include files
Old 02-09-2008, 06:30 AM How do i include files
andyp's Avatar
Extreme Talker

Posts: 165
Name: andy patterson
Trades: 0
I know how to include files like /folder/example.php & http://ap-gfx.com/folder/example.php but i want to access a folder that isnt a subfolder in the files directory i dont know how to put it plainer so if you understand please post.
andyp is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 02-09-2008, 07:29 AM Re: How do i include files
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
there are 3 special elements in a path:
Code:
../
means "go up one level from the current directory"
Code:
./
means "in this directory". It bypass the global path
Code:
/
means "from the first level of the directory tree"

So, either you know how to access it from where you are, and you can use
PHP Code:
include("../../dir1/file.php"); 
Or you use the PHP server's variable as a starting point:
PHP Code:
include($_SERVER['DOCUMENT_ROOT']."/dir1/file.php"); 
$_SERVER['DOCUMENT_ROOT'] is the place where your website have it's root folder. You can access any files in your directory tree from there.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Reply     « Reply to How do i include files
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09871 seconds with 12 queries