i read the articles about how to parse xml with php and they're interesting, but is there a way i can use both php and xml on the same page without parsing via php?
i want the parsing done client side, with xsl, and i figured since php is server side, i could use echo to print <?xml version="1.0"?> and <?xml:stylesheet type="text/xsl" href="review.xsl"?> so that the browser would parse the xml file properly.
but when i did it, the browser just shows all the text, like it's ignoring <?xml version="1.0"?> and <?xml:stylesheet type="text/xsl" href="review.xsl"?>. am i trying to do the impossible or is there something really obvious i'm missing? thanks.