I need to web query for further processing, f.ex
I use
<?php
$MSN="http://moneycentral.ms n.com/investor/external/excel/quotes.asp?SYMB OL=";
$QSymbols="F,MS FT,DE";
$QStr="$MSN"."$ QSymbols";
$lines = file ($QStr);
?>
However, the relevant information is only 3 lines on the webpage, but
more than 1000 lines in $lines, so it is slow and tedious to work
with. Is there any way to extract only the lines visible in the
browser?
Flemse
I use
<?php
$MSN="http://moneycentral.ms n.com/investor/external/excel/quotes.asp?SYMB OL=";
$QSymbols="F,MS FT,DE";
$QStr="$MSN"."$ QSymbols";
$lines = file ($QStr);
?>
However, the relevant information is only 3 lines on the webpage, but
more than 1000 lines in $lines, so it is slow and tedious to work
with. Is there any way to extract only the lines visible in the
browser?
Flemse
Comment