Can I include file through HTTP? I tried the example below from http://uk2.php.net/function.include
but it is def not working on my localhost.
Code: Select all
<?php
// Won't work; file.txt wasn't handled by http://www.example.com as PHP
include 'http://www.example.com/file.txt?foo=1&bar=2';
// Won't work; looks for a file named 'file.php?foo=1&bar=2' on the
// local filesystem.
include 'file.php?foo=1&bar=2';
// Works.
include 'http://www.example.com/file.php?foo=1&bar=2';
$foo = 1;
$bar = 2;
include 'file.txt'; // Works.
include 'file.php'; // Works.
?>This is what I tried to include
Code: Select all
<?php include 'http://localhost/mysite/incl_layouts.blog/navigation.php';?>Code: Select all
<?php include("incl_layouts.blog/navigation.php");?>Lau