What I am trying to do is include an HTML file within a PHP system (not a problem) but that HTML file also needs to be usable on its own, for various reasons, so I need to know
$site = file_get_contents("http://www.google.com/"); preg_match("/]*>(.*?)<\/body>/is", $site, $matches); echo($matches[1]);