DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
File Paths and Directory Script Navigation   Share / Like
In this quick simple lesson you will learn how to navigate to directories and file paths through code to connect to the files you need no matter where they reside on your server.

Here are code examples of directory and file path navigation:
Learn HTML
<?php 

// These first 5 examples use relative referenced paths(relative to where script is)
$my_file "somefile.php"// Connect to file in same folder
$my_file "myFolder/somefile.php"// File in a folder within the current folder
// Connect to file in a folder within a folder
$my_file "myFolder/anotherFolder/somefile.php";
$my_file "../somefile.php"// Connect to file in parent directory(jump up one level)
$my_file "../../somefile.php"// File 2 parent folders up(jump up two levels)

// This example is referencing the file by full URL
$my_file "http://www.anyDomainName.com/somefile.php";
?>

Referencing a file path using the full URL can lead to errors using some functions. It is best to always use a relative path to reference a file if possible.

As you can see in the code exapmle it is very simple to grasp. There are only two directions you can go... in(into folders) and up(into parent folders). And that is all the file navigation you need when scripting within your own domain or server.
Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5