well.. my php code is usually pretty dodgy... but something like this:
load the page into a variable (implode it if its an array, or go thru it line my line using a loop)
then:
$start = str_pos($variable, "Ratio(s):</B><BR>");
$end = str_pos($variable, "<BR><BR><P>");
if($start && $end) {
$yourcontent = substr($variable, $start + 17, $end - $start - 17);
}
the + 17 to get the content which starts 17 characters after that bit of code begins, and the $end - $start - 17 to get how long the content you want is (do a bit of algebra).
I'm assuming the content spans multiple lines.. so if your method of getting the html page into a variable creates an array, you should use $variable = implode("", $array); or something (cant quite remember)...
not entirely sure if that'll work... but it should... so hope it helps _