Index: README.txt
===================================================================
--- README.txt	(revision 2682)
+++ README.txt	(working copy)
@@ -74,7 +74,7 @@
 
 It's compatible with Staticze Reloaded. From their FAQ:
 
-There are two ways to do this, you can have functions that say dynamic or include entire other files. To have a dynamic function in the cached PHP page use this syntax around the function:
+There are three ways to do this, you can have functions that say dynamic or include entire other files. To have a dynamic function in the cached PHP page use this syntax around the function:
 
 `<!--mfunc function_name('parameter', 'another_parameter') -->
 <?php function_name('parameter', 'another_parameter') ?>
@@ -88,7 +88,12 @@
 
 That will include file.php under the ABSPATH directory, which is the same as where your `wp-config.php` file is located.
 
+To include a file from outside your wp directory or from an external site use 'pclude' like this:
 
+`<!--pclude http://example.com/getsomecontent.php-->
+<?php include_once('http://example.com/getsomecontent.php'); ?>
+<!--/pclude-->`
+
 = I removed WP-Cache and now Wordpress does not work =
 
 This occurs because Wordpress still try to run `advanced-cache.php`. Remove the following line to you wp-config.php` file:

