> "To obtain your share price data you will need to get your IT department
> to write a java object or a com active x object to strip out the unnecessary
> html so that you are just left with your share price information."
Why don't they make this available via XML? Parsing HTML is painful.
> I was sort of wondering if there is a way to do this sort of thing with PHP?
> the only other information I have is the URL in the form of:
>
>
>http://www.asx.com.au/scripts/nd_ISAPI_50.dll/asx/research/chartsSearch.jsp?searchBy=asxCode&TimeFrame=D&asxCode=ASX
That just shows a chart. How are you supposed to parse anything out of
that?
> I tried a quick test using the filesystem functions with no success, I was
> sort of hoping for a 'Yes' / 'No" answer maybe if 'Yes' just a quick
> explanation.
$fp =
fopen('http://www.asx.com.au/scripts/nd_ISAPI_50.dll/asx/research/chartsSearch.jsp?searchBy=asxCode&TimeFrame=D&asxCode=ASX','r');
should work just fine to get the HTML.
-Rasmus
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]