Re: read a web page and then display
- From: petermichaux@xxxxxxxxx
- Date: 30 Aug 2005 14:11:32 -0700
Oops. This is getting closer to working
<?php
$filename = "http://babelfish.altavista.com/";
$handle = fopen($filename, "r");
$contents = fread($handle, 100000000);
fclose($handle);
echo $contents;
?>
.
- Follow-Ups:
- Re: read a web page and then display
- From: Andy Hassall
- Re: read a web page and then display
- References:
- read a web page and then display
- From: petermichaux
- Re: read a web page and then display
- From: Andy Hassall
- read a web page and then display
- Prev by Date: Re: php download problem.
- Next by Date: Re: help w/ php mysql connect problem!!
- Previous by thread: Re: read a web page and then display
- Next by thread: Re: read a web page and then display
- Index(es):
Relevant Pages
|