[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
www.dhtmlgoodies.com • View topic - How to replace a html file to an entire URL ???
Page 1 of 1

PostPosted: Thu Jun 08, 2006 7:41 pm
by Batalf

Ok for your answer but.....

PostPosted: Fri Jun 09, 2006 10:24 am
by cox

PostPosted: Fri Jun 09, 2006 11:22 am
by Batalf

bouuuuuuuuuuuh

PostPosted: Tue Jun 20, 2006 9:08 am
by cox

PostPosted: Tue Jun 20, 2006 9:32 am
by Batalf

I'm really sorry...

PostPosted: Tue Jul 11, 2006 2:16 pm
by cox

PostPosted: Tue Jul 11, 2006 9:13 pm
by Batalf
Did you try fopen?

i.e. something like:

<?

if(isset($_GET['url'])){
$url = $_GET['url'];

$handle = fopen($url, "rb");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}

fclose($handle);
echo $contents;

}

?>

where the url to open is defined in the GET variable "url".

youpi!!!

PostPosted: Wed Jul 12, 2006 4:50 pm
by cox