Mega Code Archive

 
Categories / Php / Network
 

Getting and Printing a Web Page with fopen()

<html> <head> <title>Getting and printing a web page with fopen()</title> </head> <body> <?php $webpage = "http://www.rntsoft.com/index.htm"; $fp = fopen( $webpage, "r" ) or die("couldn't open $webpage"); while ( ! feof( $fp )){     print fgets( $fp, 1024 ); } ?> </body>  </html>