RE: [PHP] Grabbing dynamic pages

2001-09-07 Thread Joseph Blythe
the html (oh my god). Regards Joseph -Original Message- From: Donny Yap [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 September 2001 4:55 PM To: Joseph Blythe Subject: RE: [PHP] Grabbing dynamic pages Yes, This shouldn't be too hard to do; work out what type of data it is you're grabbing

Re: [PHP] Grabbing dynamic pages

2001-09-06 Thread Rasmus Lerdorf
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

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
Thanks all (c: Why don't they make this available via XML? Parsing HTML is painful. Was my exact question to them (c: That just shows a chart. How are you supposed to parse anything out of that? Hehe I provided the wrong url should something like:

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Rasmus Lerdorf
This script worked fine for me here: ? $fp = fopen(http://www.asx.com.au/scripts/nd_ISAPI_50.dll/asx/research/CompanyInfoSearchResults.jsp?searchBy=asxCodeallinfo=onasxCode=asxcompanyName=principalActivity=industryGroup=0,r;); while(!feof($fp)) echo fgets($fp,1024); fclose($fp); ? Firewall in

Re: [PHP] Grabbing dynamic pages

2001-09-06 Thread David Robley
On Fri, 7 Sep 2001 14:44, Joseph Blythe wrote: Hey all, I got a bit of a problem I need to be able to grab info (which has been approved) from the Australian Stock Exchange Website (www.asx.com.au) all they say about this in the information they sent me is: To obtain your share price data

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
;); Thanks again, Joseph -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 September 2001 3:18 PM To: Joseph Blythe Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Grabbing dynamic pages This script worked fine for me here: ? $fp = fopen(http://www.asx.com.au/scripts

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
PROTECTED]] Sent: Friday, 7 September 2001 3:02 PM To: Joseph Blythe; [EMAIL PROTECTED] Subject: Re: [PHP] Grabbing dynamic pages On Fri, 7 Sep 2001 14:44, Joseph Blythe wrote: Hey all, I got a bit of a problem I need to be able to grab info (which has been approved) from the Australian Stock