Quote:
Originally Posted by kall
Ok, so I have something that needs to be called in my php include start template.
The instructions say to use:
PHP Code:
require_once("./includes/the_file_to_be_included.php");
That won't work on any page outside the /forums/ directory/subdomain, correct?
My answer was to use:
PHP Code:
require_once("http://forums.nzboards.com/includes/the_file_to_be_included.php");
Does/will that cause problems at all?
The same question applies to
PHP Code:
include("./include/the_file_to_be_included.php"");
PHP Code:
include("http://forums.nzboards.com/includes/the_file_to_be_included.php");
|
i dont think it will work just because if it would than i could do anything i want to any script on the web.... i just include some php file that contains login details and pass queries...
sees logical to think like that but i may be wrong.