[PHP] ?xml ? parsing problem

2003-06-28 Thread Daniele Baroncelli
Hi guys, 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 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; It

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
January 2002 00:23 To: [EMAIL PROTECTED] Subject: [PHP] XML Parsing Problem Hi all - I'm experimenting with PHP's XML parser for an application that maps XML tags to MySQL database fields. As a test for my parsing program, I've been grabbing XML from the Slashdot news feed (http://www.slashdot.org

Re: [PHP] XML Parsing Problem

2002-01-02 Thread Ben Gollmer
PROTECTED] Subject: [PHP] XML Parsing Problem Hi all - I'm experimenting with PHP's XML parser for an application that maps XML tags to MySQL database fields. As a test for my parsing program, I've been grabbing XML from the Slashdot news feed (http://www.slashdot.org/slashdot.xml

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

[PHP] XML Parsing Problem

2001-12-31 Thread Ben Gollmer
Hi all - I'm experimenting with PHP's XML parser for an application that maps XML tags to MySQL database fields. As a test for my parsing program, I've been grabbing XML from the Slashdot news feed (http://www.slashdot.org/slashdot.xml) and inserting it into a database. This is very simple