-
OK... let's try this.
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);
?>
Regex would be much more elegant here, but PHP seems to have a problem with character classes I can't quite understand.
-
the last code you gave me, shows only a blanc page....:confused: :confused:
What is Regex??