Re: [PHP] ?xml ? parsing problem

2003-06-28 Thread Ernest E Vogelsinger
At 12:33 28.06.2003, Daniele Baroncelli said: [snip] I have problem in including this text in my PHP parsed file for XHTML definition: ?xml version=1.0 encoding=iso-8859-1? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

Re: [PHP] ?xml ? parsing problem

2003-06-28 Thread David Otton
On Sat, 28 Jun 2003 12:33:27 +0200, you wrote: I have problem in including this text in my PHP parsed file for XHTML definition: It works if I remove the first line: ?xml version=1.0 encoding=iso-8859-1? So, I am assuming PHP has problems with the ? ? symbols, as they are recognised to be PHP

Re: [PHP] ?xml ? parsing problem

2003-06-28 Thread Tularis
David Otton wrote: On Sat, 28 Jun 2003 12:33:27 +0200, you wrote: I have problem in including this text in my PHP parsed file for XHTML definition: It works if I remove the first line: ?xml version=1.0 encoding=iso-8859-1? So, I am assuming PHP has problems with the ? ? symbols, as they

Re: [PHP] XML Parsing Problem

2002-01-03 Thread Ben Gollmer
useful. Matt. -Original Message- From: Ben Gollmer [mailto:[EMAIL PROTECTED]] Sent: 02 January 2002 23:16 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] XML Parsing Problem Ok, I can understand the predefined entity replacement. But why does it break the string up

RE: [PHP] XML Parsing Problem

2002-01-02 Thread Matthew Clark
Hi there, This is not a bug.. this is expected behaviour. The string would be chopped up into 3 parts because you have : 1. a string: Follow-up To Critique of BeOS 2. a predefined entity : amp; 3. a string: amp; Mac OS X There are not actually two ampersands.. you have amp; followed by amp;

Re: [PHP] XML Parsing Problem

2002-01-02 Thread Ben Gollmer
Ok, I can understand the predefined entity replacement. But why does it break the string up into 3 parts? I think it should just return Follow-up To Critique of BeOS amp; Mac OS X. Ben On Wednesday, January 2, 2002, at 02:05 PM, Matthew Clark wrote: Hi there, This is not a bug.. this is

RE: [PHP] XML Parsing Problem

2002-01-02 Thread Matthew Clark
. -Original Message- From: Ben Gollmer [mailto:[EMAIL PROTECTED]] Sent: 02 January 2002 23:16 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] XML Parsing Problem Ok, I can understand the predefined entity replacement. But why does it break the string up into 3 parts? I