View Single Post
Old 08-28-2003, 08:56 PM  
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
This simple code will load any site you want. I have a script that can replace URLs, etc. ICQ me if you need it.

PHP Code:
<?php
// Get a file into an array.  In this example we'll go through HTTP to get 
// the HTML source of a URL.
$lines file ('http://www.WEBSITEHERE.com/');

// Loop through our array, show html source as html source; and line numbers too.
foreach ($lines as $line_num => $line) {
    echo 
$line;
}

?>
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote