I seem to have a strange problem.
I have parsed this string from a web page;
$parse = " <TD><FONT FACE="Verdana,Arial,Helvetica,sans-serif" SIZE=-1> 1.53544 </FONT></TD>"
all i want is the numerical value from within this string so i used the following
$number = substr($parse[238], 63, 70);
This should retturn the characters 63 - 70 from this string ie 1.53544
BUT I get;
1.53544 </FONT></TD>
what is going off here?