Welcome aboard cpirt,
I get the error Parse error: syntax error, unexpected T_STRING in /home/printt5/public_html/ptmanuals/edu/apdx-faq.html on line 1
This is most often a
missing quote or some place it's expecting a variable, but in your case, it's something else. Look at your first line.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
It's parsing it as a PHP short tag. :-) Two way to go here:
1. If this is **NOT** an XML document, just remove this line completely. You don't need to declare the document as XML even with an XHTML doctype. You're probably not even
extending the HTML set, so can drop to a 4.+ doctype, or use HTML 5, but that's not related to the question.
2. If you **NEED** an xml declaration, echo this line. It's a bit of a work around, but should do the trick:
<?php echo '<?xml version="1.0" encoding="UTF-8" standalone="no"?>';?>
Might have to escape the ?'s inside the quotes, might not.