Salve ho una scheda raggiungibile all url

http://www.futuriastore.com/scheda.php

desidererei sapere come estrapolare tutta la scheda escluso la prima parte che riguarda i commenti, cioè la prima riga intera della tabella.

sto usando questo script ma non riesco a prenderne solo la parte che mi interessa

codice:
<?php 
$url = "http://www.futuriastore.com/scheda.php";
$input = @file_get_contents($url) or die('Could not access file: $url');
$regexp = "/\s<div id=\"tab-fiche\">(.*)<\/div>/siU";
preg_match_all("$regexp", $input, $matches, PREG_SET_ORDER);
foreach($matches as $match) {
//print_r($match);
$Vetrina = $match[0];
}
       
    $Vetrina=   str_replace( "vetrina","RomanelliDiv",$Vetrina);
       echo $Vetrina;
?>

poetete aiutarmi??

grazie