Hi RJS,
Here's one possible way to retrieve the information. This code could be optimised a bit more however I've left it showing the individual steps.
<?
// Declare variable for use in URL. Not required but handy if you want to change the number frequently.
$num = '8915716305';
// This will read the entire file into an array and assign that to $ret
// http://uk.php.net/file for more information
$ret = file("http://accounting.mstar2.net/subscribe/PreQualResponse?num=$num");
// This retrieves the 4th line from the array, i.e. ignores <html> etc etc
$line = $ret[3];
// This then splits that line into a new array based on the position of ;
$data = split(';', $line);
// The use of <pre> is just to format the array nicely on screen. Each part split by ; is an element in the array.
echo '<pre>'; print_r($data); echo '</pre>';
?>
A word of caution, at the moment this only works based on the example you gave, where the data retried is all on a single line. If this isn't the case then the above code will need adapting to allow for this. Best bet is to try it and see how it goes.
Thanks
Relisys