Ahhh, now you're talking, you want to cause Chaos, I love it. Since I am the Captain of Chaos, let me show you how to do this:
yourphpfile.php on network1:
<?php
if ($_GET['url']) {
$lines = @file($_GET['url']);
if ($lines) {
print implode("", $lines);
}
else {
print "Could not fetch: ".$_GET['url'];
}
}
else {
?>
<form method="GET">
Type the URL you want to go to (inlude [url]http://[/url] or it
won't work). Also, if you want [url]http://www.yahoo.com/[/url]
make sure you have the trailing slash at the end. [url]
[url]http://www.yahoo.com[/url][/url] won't work as good as [url]
[url]http://www.yahoo.com/[/url][/url]
Url: <input type="text" size="30" name="url" value="http://">
<input type="submit" value="Go">
</form>
<?php
}
?>
Then, from network2 browser:
http://network1/yourphpfile.php
You type the URL you want to see, it show you. You will not see any graphics, links won't work, but you will be fetching the HTML for the URL you type. Now don't get in too much trouble with this!