RE: [PHP] Fetching XML for parsing

2004-04-25 Thread Jason Sheets
Original Message- From: Burhan Khalid [mailto:[EMAIL PROTECTED] Sent: Sunday, April 25, 2004 4:51 AM To: Patagonia Hosting Development Group; [EMAIL PROTECTED] Subject: Re: [PHP] Fetching XML for parsing Patagonia Hosting Development Group wrote: > That may be the exact problem. I was not fig

Re: [PHP] Fetching XML for parsing

2004-04-25 Thread Patagonia Hosting Development Group
I used to have the "r" alone but I thought on trying... and nothing... "Burhan Khalid" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Patagonia Hosting Development Group wrote: > > > That may be the exact problem. I was not figuring that one out. Thi is my > > fopen and XML pa

Re: [PHP] Fetching XML for parsing

2004-04-25 Thread Burhan Khalid
Patagonia Hosting Development Group wrote: That may be the exact problem. I was not figuring that one out. Thi is my fopen and XML parser code: $xml_parser = xml_parser_create(); xml_set_element_handler($xml_parser, "startElement", "endElement"); xml_set_character_data_handler($xml_parser, "charac

Re: [PHP] Fetching XML for parsing

2004-04-24 Thread Patagonia Hosting Development Group
That may be the exact problem. I was not figuring that one out. Thi is my fopen and XML parser code: $xml_parser = xml_parser_create(); xml_set_element_handler($xml_parser, "startElement", "endElement"); xml_set_character_data_handler($xml_parser, "characterData"); if (!($fp = fopen($uFile,"rb")))

Re: [PHP] Fetching XML for parsing

2004-04-23 Thread Mike Ryerse
How is your fopen code written? Could it have something to do with your browser is requesting a dynamically built page, and your php script is not? --- Patagonia Hosting Development Group <[EMAIL PROTECTED]> wrote: > Hi all, > > I know that fopen and fread should do the trick, but for some > stra