OK... let's try this.Regex would be much more elegant here, but PHP seems to have a problem with character classes I can't quite understand.Code:<?php ob_start(); include("../music/andromeda.php"); $page = ob_get_contents(); ob_end_clean(); $page = explode("<body", $page); $page = $page[1]; $page = explode(">", $page); $page = $page[1]; $page = explode("</body>", $page); $page = $page[0]; echo($page); ?>



Reply With Quote

Bookmarks