Re: [PHP] problem with include directive under XHTML

2008-06-04 Thread Robert Huff
Uh, guys? Nevermind. To quote someone's .sig: The truth was out there, but the lies were in my mind. I cleared out a couple of mis-conceptions, and the problem went away. Sorry for the noise. Robert Huff -- PHP General

[PHP] problem with include directive under XHTML

2008-06-03 Thread Robert Huff
I'm working on a project that involves converting HTML to XHTML. Not strictly sure this is a PHP issue, but testing (so far) has eliminated other possibilities. Can someone offer suggestions why, on the same server (Apache 2.2.8), this works: !DOCTYPE HTML PUBLIC -//W3C//DTD

Re: [PHP] problem with include directive under XHTML

2008-06-03 Thread Robert Huff
Robbert van Andel writes: I've had this problem. It's because of the ? and ? that surrounds your XML. Your php configuration probably has short tags enabled. Negative, Prior research found this problem, and the short tags setting, which was promptly set to OFF,

Re: [PHP] problem with include directive under XHTML

2008-06-03 Thread Robbert van Andel
What is the error message you are getting? On Tue, Jun 3, 2008 at 11:37 AM, Robert Huff [EMAIL PROTECTED] wrote: Robbert van Andel writes: I've had this problem. It's because of the ? and ? that surrounds your XML. Your php configuration probably has short tags enabled.

Re: [PHP] problem with include directive under XHTML

2008-06-03 Thread Robbert van Andel
I've had this problem. It's because of the ? and ? that surrounds your XML. Your php configuration probably has short tags enabled. I have had to use php to output this ?PHP echo ' ?xml version=1.0 encoding=utf-8?' ; ? On Tue, Jun 3, 2008 at 7:25 AM, Robert Huff [EMAIL PROTECTED] wrote: