I am attempting to call a Webpage into another page, I have two different scripts that would easily work except that the server my site is on uses PHP4.0.4 and has track_errors off, thus, along with the page I am calling I get:
Last-Modified: Tue, 07 Aug 2001 17:45:17 GMT ETag: "53549-55f-3b70292d" Accept-Ranges: bytes Content-Length: 1375 Connection: close Content-Type: text/plain
My service provider says there is a way to get around this but I can't find the answer. Could someone please help me get around these messages.
These are the scripts I have to call the pages:
<?php
@readfile("http://www.loscotoff.com/dena/newindex/denabottom.txt");
?>
and
<?php
$webpage = "http://www.loscotoff.com/dena/assassinations/menu.html";
$fp = @fopen( $webpage, "r" ) or die("couldn't open $webpage");
while ( ! feof( $fp ))
print @fgets( $fp, 1024 );
?>
I am willing to use either one.
Dena