How to get a PHP file to be included across files in different directories?
New Updates
Html.................?
I need help learning Html? where can i learn it for free.... More »
How to publish php file that I just edited back to my website?
I used FTP program that is offered by default by GoDaddy and downloaded a file to my PC. After chaning this php file using MS Notepad, I uploaded it back on to my website's back end, but don't know how to make it so that the edited php file publishes on my website. Please help. Thanks..... More »
Currently I have created some php based webpages and uploaded them to my web hosting server.It has a PHP 5.1.6
installed.With this I am able to include files only that are in the same directory(they work well using require() fn).If not an error message displaying some “no such file” in directory appears in the page.I would like to use them to be included in different direcetories.What should I do?
create the directories and include the names when using the require() function.
example :
your index.php is in the root directory
/index.php
and you have a directory with your other php files in
/lib/other.php
so in index.php you will have
require("lib/other.php");