Forum Moderators: coopster
i got a similar error to the subject title whenever i tried to use the "live data view" during the php tutorial in dreamweaver. (using xp os)
The soloution was:
change the following line in the 'php.ini' file:
from: short_open_tag = On
to: short_open_tag = Off
A brief explanation whats goin from what ive gathered is that the line:
<?xml version="1.0" encoding="iso-8859-1"?>
is parsed as php because of a default setting of short_open_tag = On, and when working with php + xml together this should be set to Off.
More explanation from the php manual: [php.net...]
Hope this saves an apprentice webmaster like myself some time and frustration. i wasted too much of both on such a simple thing.