Re: [PHP] XML and :

2009-02-24 Thread Per Jessen
Merlin Morgenstern wrote: > Hi there, > > I am trying to pars an XML file with php. This works if the xml tag > looks like this: 88 > In that case I retrieve the info: $xml->anbieternr > > But now the tag looks different like this: > 88 > > The command $xml->imo:anbieternr does not work in that

Re: [PHP] XML and :

2009-02-24 Thread mike
On Tue, Feb 24, 2009 at 6:51 AM, Merlin Morgenstern wrote: > The command $xml->imo:anbieternr does not work in that case. > > Has somebody an idea how to adress this? you could cheat and string replace the node prefix in the document imo: to imo_ and then you can use simplexml. it's an ugly hac

Re: [PHP] XML and :

2009-02-24 Thread Andrew Ballard
On Tue, Feb 24, 2009 at 9:51 AM, Merlin Morgenstern wrote: > Hi there, > > I am trying to pars an XML file with php. This works if the xml tag looks > like this: 88 > In that case I retrieve the info: $xml->anbieternr > > But now the tag looks different like this: > 88 > > The command $xml->imo:an

Re: [PHP] XML and htmlentities conditionally?

2006-01-29 Thread Adam Hubscher
Brian V Bonini wrote: On Sun, 2006-01-29 at 02:01, Adam Hubscher wrote: I have a block of XML that looks as follows: <*_~_*> Røyken VGS <*_~_*> My question is, can I in any way efficiently (i -stress- efficiently, if anyone read my previous XML and special characters post its a rather la

Re: [PHP] XML and htmlentities conditionally?

2006-01-29 Thread Brian V Bonini
On Sun, 2006-01-29 at 02:01, Adam Hubscher wrote: > I have a block of XML that looks as follows: > > <*_~_*> Røyken VGS <*_~_*> > My question is, can I in any way efficiently (i -stress- efficiently, if > anyone read my previous XML and special characters post its a rather > large XMl file (br

Re: [PHP] XML and special characters

2006-01-28 Thread Adam Hubscher
Steve Clay wrote: Sunday, January 22, 2006, 10:10:54 PM, Adam Hubscher wrote: ee dee da da da? §ð <-- those that look like html entities are the represented characters. I was mistaken, they are html entities, Can you show us a small chunk of this XML that throws errors? You said you've tri

Re: [PHP] XML and special characters

2006-01-22 Thread Adam Hubscher
Adam Hubscher wrote: tedd wrote: I've been having a tough time with parsing XML files and special characters. -snip- Any suggestions as to how I could get around this seemingly impossible road block thats been placed by what seems to be the xml engines :O.. Adam: I believe that these

Re: [PHP] XML and special characters

2006-01-22 Thread Adam Hubscher
tedd wrote: I've been having a tough time with parsing XML files and special characters. -snip- Any suggestions as to how I could get around this seemingly impossible road block thats been placed by what seems to be the xml engines :O.. Adam: I believe that these "special" character will

Re: [PHP] XML and special characters

2006-01-22 Thread tedd
I've been having a tough time with parsing XML files and special characters. -snip- Any suggestions as to how I could get around this seemingly impossible road block thats been placed by what seems to be the xml engines :O.. Adam: I believe that these "special" character will be with us for

Re: [PHP] XML and PHP

2005-07-06 Thread Charles Stuart
use a search engine. if you can't find what you need, then ask. if you already did this, then state that you already looked and you found xyz, but xyz isn't telling you what you need to know, which is specifically "blah". best, charles On Jul 6, 2005, at 2:59 PM, Cima wrote: hi

RE: [PHP] XML and PHP

2005-07-06 Thread Jay Blanchard
[snip] i would like to know where i could find more info on xml and working xml with php. [/snip] Start with the manual http://www.php.net/xml -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML and Excel

2004-02-10 Thread Jake McHenry
- Original Message - From: "Phillip Jackson" <[EMAIL PROTECTED]> To: "Jake McHenry" <[EMAIL PROTECTED]> Sent: Tuesday, February 10, 2004 4:53 PM Subject: Re: [PHP] XML and Excel > sure; if it doesn't compromise security for you. > > > ~P

Re: [PHP] XML and Excel

2004-02-10 Thread Jake McHenry
day, February 10, 2004 11:35 AM Subject: Re: [PHP] XML and Excel > Please post your solution to the group for reference. > > ~phillip > > "Jake McHenry" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > - Original Message - > &g

Re: [PHP] XML and Excel

2004-02-10 Thread Phillip Jackson
lt;[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Monday, February 09, 2004 12:42 PM > Subject: Re: [PHP] XML and Excel > > > > Create native xls files, there are at least two classes that can help > > you, here is one: > > http://www.bettina-attack.de/jonn

Re: [PHP] XML and Excel

2004-02-09 Thread Jake McHenry
- Original Message - From: "Marek Kilimajer" <[EMAIL PROTECTED]> To: "Jake McHenry" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, February 09, 2004 12:42 PM Subject: Re: [PHP] XML and Excel > Create native xls files, there are at le

Re: [PHP] XML and Excel

2004-02-09 Thread Marek Kilimajer
Create native xls files, there are at least two classes that can help you, here is one: http://www.bettina-attack.de/jonny/view.php/projects/php_writeexcel/ Jake McHenry wrote: Hi everyone. Since my last post of outputing to excel, I have converted my output to XML, quite happy with myself. It l

Re: [PHP] xml and php

2003-07-31 Thread Ray Hunter
Make sure that you have all the dlls that are needed for php+dom. these dlls need to be in your windows path as well. Uncomment the dll in your php.ini file and restart the webserver. View a php page with phpinfo() as the only function in that page: See if you have dom in there. If not then fol

RE: [PHP] xml and php

2003-07-31 Thread Jay Blanchard
[snip] 1 Title 1 Description 1

RE: [PHP] xml and php

2003-07-31 Thread Jay Blanchard
[snip] so I can parse and read xml file but I can't add or modify nothing in my xml file and even not create xml file ! [/snip] Uh, XML files are text files which you can modify with any of the text handling functions in PHP. What exactly are you trying to accomplish? -- PHP General Mailing List

Re: [PHP] xml and php

2003-07-31 Thread Steff
gt; Sent: Thursday, July 31, 2003 3:03 PM Subject: RE: [PHP] xml and php [snip] I'm a beginner in php. I want to manipulate xml file with Php (add some element, modify some element, delete some element and consult some element) but when I try domxml_open_file I obtain sys

RE: [PHP] xml and php

2003-07-31 Thread Jay Blanchard
[snip] I'm a beginner in php. I want to manipulate xml file with Php (add some element, modify some element, delete some element and consult some element) but when I try domxml_open_file I obtain system error : Call to undefined function: domxml_open_file() I heard about use --with-do

Re: [PHP] XML and XLS Sablotron

2002-10-30 Thread Geoff Hankerson
Basically SAX and DOM are for parsing xml and xslt is for transforming xml into html, svg, wml, pdf and the like. So it sounds like you want to use xslt. Daniele Baroncelli wrote: Dear all, I am just approaching to XML and I would need some explanation, which most of you will probably consider

Re: [PHP] XML and PHP - dynamic hell

2001-12-01 Thread Chris
It didn't help :( - Original Message - From: "Matthew Loff" <[EMAIL PROTECTED]> To: "'Chris'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, December 01, 2001 10:03 AM Subject: RE: [PHP] XML and PHP - dynamic hell > &

RE: [PHP] XML and PHP - dynamic hell

2001-12-01 Thread Matthew Loff
Did you try adding: header("Content-Type: text/xml"); To the top? -Original Message- From: Chris [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 01, 2001 12:34 AM To: [EMAIL PROTECTED] Subject: [PHP] XML and PHP - dynamic hell I'm having one page output XML for other sites to p